Search results for Ocean Hooks
431 articles found
-
How To Use Swatches Customizer Styling
The Swatches Customizer Styling module is available to you as of v 1.1.0 of Ocean eComm Treasure Box addon for custom WooCommerce websites. If you have variable products in your online store, but not
-
How To Create The Wishlist Page
The Wishlist component is available as of v 1.1.0 and enables you to allow your customers to add products to their wishlist. The Wishlist component is a simple feature at this stage, but we plan to
-
Add New Social Options to the About Me Widget
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
-
How To Add Adobe Fonts (TypeKit)
As of OceanWP version 3.4.0 and Ocean Extra version 2.1.0, you are able to add Adobe Fonts (TypeKit) to your OceanWP theme for free. Once you've connected your Adobe Fonts project with your OceanWP
-
How To Create a Custom Header
Since version 1.1.1 of OceanWP, you can create your own header with your favorite page builder. Learn how to create a custom header template and implement it on your OceanWP powered website: The
-
Add New Social Options to the Social Links Widget
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
-
Sample Child Theme
If you are planning to make advanced changes to the OceanWP theme (for example, add custom PHP codes the functions.php file or override existing theme or plugin template files), the best way to do
-
How To Use Coupon Manager
Welcome to your Ocean eComm Treasure Box! The Coupon Manager feature is available as of Ocean eComm Treasure Box 1.2.0 version. The Coupon Manager feature serves to manage your store coupons,
-
Security Headers: Site Booster Module
The Ocean Site Booster's Security Headers module enables you to control security headers (HSTS, Content Security Policy, Cross Origin Embedder Policy and others) on your website and automatically
-
Speculative Loading: Site Booster Module
The Ocean Site Booster's Speculative Loading module enables you to add an extra speed kick to the way your website pages are loading. The Speculative Loading module uses the browser's Speculation
-
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
-
wp_head Cleaner: Site Booster Module
The Ocean Site Booster's wp_head Cleaner module enables you to control what's output in your website's <head> HTML element. To access wp_head Cleaner, click on the cog icon, then toggle to enable the
-
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,
-
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
-
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,
-
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',
-
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
-
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
-
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',
-
[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
-
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
-
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