Search results for Ocean Hooks
420 articles found
-
WP General: Site Booster Panel
The Ocean Site Booster's WP General panel is a standalone module and enables you to control core WordPress features that may be redundant or present an issue related to your workflow and website
-
Modal Window - Customizer
Default theme settings may differ if you have imported one of the OceanWP prebuilt website templates for WordPress. This is because these templates come with their own Customizer settings. However,
-
Custom Post Types: CPT Manager
As of Ocean Pro Demos version 1.5.0, all OceanWP Pro Bundle license owners will be able to enjoy the OceanWP Custom Post Types (CPT) feature. In order to be able to utilize the Custom Post Types
-
Get Instagram Access Token
With the Instagram Feed widget (a part of the Ocean Elementor Widgets premium extension), you need to generate an access token in order to display your photos. It is assumed you already have a
-
Site Style & Settings - Customizer
Default theme settings may differ if you have imported one of the OceanWP prebuilt website templates for WordPress. This is because these templates come with their own Customizer settings. However,
-
How to Replicate the Theme Screenshot?
Important: This tutorial on how to recreate a theme screenshot manually was written in 2016. There are much better and painless ways for you to recreate a screenshot of your website (using a page
-
Mobile Menu Dropdown When Clicking Link Instead of Arrow
function my_ocean_localize_array( $array ) { $array['sidrDropdownTarget'] = 'li'; return $array; } add_filter( 'ocean_localize_array', 'my_ocean_localize_array' ); All PHP snippets should be added via
-
How To Remove Script Version Numbers
function ocean_remove_script_version( $src ) { if ( strpos( $src, 'ver=' ) ) { $src = remove_query_arg( 'ver', $src ); } return $src; } add_filter( 'script_loader_src', 'ocean_remove_script_version',
-
WordPress Optimizer: Site Booster Module
The Ocean Site Booster's WordPress Optimizer module enables you to control core WordPress features that may be redundant or present a security issue for your website. To access WordPress Optimizer,
-
Alter the Page Header Background Image
This is a Developer Level doc. If you're unfamiliar with PHP and/or editing files, codes and templates, as well as with resolving possible conflict, please seek help from a professional. Under our
-
Change Header Replace Search Default Text
This is a Developer Level doc. If you're unfamiliar with PHP and/or editing files, codes and templates, as well as with resolving possible conflict, please seek help from a professional. Under our
-
Change Search Dropdown and Search Widget Default Text
This is a Developer Level doc. If you're unfamiliar with PHP and/or editing files, codes and templates, as well as with resolving possible conflict, please seek help from a professional. Under our
-
Change Search Overlay Default Text
This is a Developer Level doc. If you're unfamiliar with PHP and/or editing files, codes and templates, as well as with resolving possible conflict, please seek help from a professional. Under our
-
Pages & Special Pages - Customizer
Default theme settings may differ if you have imported one of the OceanWP prebuilt website templates for WordPress. This is because these templates come with their own Customizer settings. However,
-
Woo Popup - Customizer
Default theme settings may differ if you have imported one of the OceanWP prebuilt website templates for WordPress. This is because these templates come with their own Customizer settings. However,
-
Add New Social Options for the Top Bar and The Social Menu
This is a Developer Level doc. If you're unfamiliar with PHP and/or editing files, codes and templates, as well as with resolving possible conflict, please seek help from a professional. Under our
-
Disable italic font style from the typography section of the customizer
Add the below code to the child theme's functions.php file to disable the italic font style from the typography section of the Customizer: add_filter( 'ocean_google_font_enqueue_italics',
-
Sticky Header - Customizer
Default theme settings may differ if you have imported one of the OceanWP prebuilt website templates for WordPress. This is because these templates come with their own Customizer settings. However,
-
WP General Security: Site Booster Module
WP General Security module allows you to control core WordPress features that, if left as is, may represent a security threat or a vulnerability that can be exploited. By disabling WordPress core
-
Remove the Shop Page Subheading
// Remove the Shop page subheading function my_remove_shop_page_header_subheading( $subheading ) { if ( is_shop() ) { $subheading = false; } // Return the subheading return $subheading; } add_filter(
-
Disable The Mobile Displace Animation
// Disable mobile displace for the sidr mobile menu function my_disable_sidr_displace( $array ) { // Set sidrDisplace to false $array['sidrDisplace'] = false; // Return array return $array; } add_filt
-
Remove all Google Fonts from the typography settings panel
/** * Remove all Google font options from the Customizer */ function remove_customizer_google_fonts( $fonts ) { if ( is_customize_preview() ) { $fonts = ''; } return $fonts; } add_filter( 'ocean_googl
-
Alter the Shop Page Subheading
// Alter the Shop page subheading function my_alter_shop_page_header_subheading( $subheading ) { if ( is_shop() ) { $subheading = 'My shop page subheading'; } // Return the subheading return $subheadi
-
Alter the Shop Page title
// Alter the Shop page title function my_alter_shop_page_header_title( $title ) { if ( is_shop() ) { $title = 'My shop page'; } // Return the title return $title; } add_filter( 'ocean_title', 'my_alte
-
[oceanwp_last_modified] Shortcode
This shortcode allows you to display the last modified date of a single page or blog post, in case you do not wish to include the Modified Date meta option in OceanWP Single Blog Post settings
-
Add/Remove Elements From The Mobile Menu
// Sample function to add/remove items from the mobile menu function my_add_to_mobile_menu( $array ) { // Add element with ID my-custom-id $array['my-custom-id'] = '#my-custom-id'; // Remove search if
-
Add Custom Color Palettes in the Color Options
// Replace the default color palettes in the color picker function my_custom_color_palettes( $palettes ) { $palettes = array( '#000000', '#ffffff', '#f44336', '#03a9f4', '#00bcd4', '#ffeb3b', '#ffc107
-
Alter WooCommerce Menu Cart Icon HTML
This is a Developer Level doc. If you're unfamiliar with PHP and/or editing files, codes and templates, as well as with resolving possible conflict, please seek help from a professional. Under our
-
Custom Metaviewport Tag
This is a Developer Level doc. If you're unfamiliar with PHP and/or editing files, codes and templates, as well as with resolving possible conflict, please seek help from a professional. Under our
-
Alter the Blog Entry Heading Tag
This is a Developer Level doc. If you're unfamiliar with PHP and/or editing files, codes and templates, as well as with resolving possible conflict, please seek help from a professional. Under our
-
Alter the Single Post Heading Tag
This is a Developer Level doc. If you're unfamiliar with PHP and/or editing files, codes and templates, as well as with resolving possible conflict, please seek help from a professional. Under our
-
Add Author Bio on Author Archive Pages
This is a Developer Level doc. If you're unfamiliar with PHP and/or editing files, codes and templates, as well as with resolving possible conflict, please seek help from a professional. Under our
-
Remove Search Results Sidebar
This is a Developer Level doc. If you're unfamiliar with PHP and/or editing files, codes and templates, as well as with resolving possible conflict, please seek help from a professional. Under our
-
Alter The Text In The Mobile Menu Link
This is a Developer Level doc. If you're unfamiliar with PHP and/or editing files, codes and templates, as well as with resolving possible conflict, please seek help from a professional. Under our
-
Edit The Side Panel
With this extension, you can add a responsive side panel with your preferred widgets inside. To change the settings, go to your dashboard, click Appearance > Customize and go to the Side Panel
-
Alter Main Page Title
This is a Developer Level doc. If you're unfamiliar with PHP and/or editing files, codes and templates, as well as with resolving possible conflict, please seek help from a professional. Under our
-
Change WooCommerce "Out Of Stock" Text
This is a Developer Level doc. If you're unfamiliar with PHP and/or editing files, codes and templates, as well as with resolving possible conflict, please seek help from a professional. Under our
-
Disable Page Title on Single Product Pages
This is a Developer Level doc. If you're unfamiliar with PHP and/or editing files, codes and templates, as well as with resolving possible conflict, please seek help from a professional. Under our
-
Alter Floating Bar Heading Tag
This is a Developer Level doc. If you're unfamiliar with PHP and/or editing files, codes and templates, as well as with resolving possible conflict, please seek help from a professional. Under our
-
Remove Theme Meta Generator
This is a Developer Level doc. If you're unfamiliar with PHP and/or editing files, codes and templates, as well as with resolving possible conflict, please seek help from a professional. Under our
-
Change The Blog Related Query Arguments
This is a Developer Level doc. If you're unfamiliar with PHP and/or editing files, codes and templates, as well as with resolving possible conflict, please seek help from a professional. Under our
-
Change Widget Heading Tag in Sidebar and Footer Area
This is a Developer Level doc. If you're unfamiliar with PHP and/or editing files, codes and templates, as well as with resolving possible conflict, please seek help from a professional. Under our
-
Custom Google Font Lists
This is a Developer Level doc. If you're unfamiliar with PHP and/or editing files, codes and templates, as well as with resolving possible conflict, please seek help from a professional. Under our
-
Alter Subheading On Search Results
This is a Developer Level doc. If you're unfamiliar with PHP and/or editing files, codes and templates, as well as with resolving possible conflict, please seek help from a professional. Under our
-
Disable the Page Title on Single Blog Posts
This is a Developer Level doc. If you're unfamiliar with PHP and/or editing files, codes and templates, as well as with resolving possible conflict, please seek help from a professional. Under our
-
Alter Page Subheading
This is a Developer Level doc. If you're unfamiliar with PHP and/or editing files, codes and templates, as well as with resolving possible conflict, please seek help from a professional. Under our
-
Change The Continue Reading Text
This is a Developer Level doc. If you're unfamiliar with PHP and/or editing files, codes and templates, as well as with resolving possible conflict, please seek help from a professional. Under our
-
Hide Single Post Modified Date
This is a Developer Level doc. If you're unfamiliar with PHP and/or editing files, codes and templates, as well as with resolving possible conflict, please seek help from a professional. Under our
-
Disable Date on Related Posts
This is a Developer Level doc. If you're unfamiliar with PHP and/or editing files, codes and templates, as well as with resolving possible conflict, please seek help from a professional. Under our
-
Alter Mobile Layout ( Content / Sidebar )
This is a Developer Level doc. If you're unfamiliar with PHP and/or editing files, codes and templates, as well as with resolving possible conflict, please seek help from a professional. Under our