Search results for custom post type

337 articles found

  • Known Bugs & Issues

    In this document we'll cover known bugs or user experience issues related to specific updates, as well as the current status (example: fixed or pending update) or the solution for it. Information

  • 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

  • Introduction to OceanWP Panel

    Since the OceanWP theme version 3.3.0, the OceanWP Panel will be displayed for all users under the Appearance section in the WordPress dashboard (in case the Ocean Extra plugin is not installed and

  • [oceanwp_woo_cart] Shortcode

    This shortcode allows you to display a cart icon: [oceanwp_woo_cart] Here is a list of the different parameters: class: If you want to add a custom class. style: Choose between drop_down or custom_lin

  • How to Show Popup Login Link

    By default, the popup login link will automatically display in the primary menu. But, if you want to display it somewhere else or if you're using a custom header, there are two other ways. Please

  • WooCommerce Variation Select Box Not Clickable on Elementor Pages

    If you have created custom single product pages using Elementor, and are experiencing issues with the variation dropdown menu not being clickable, use the following CSS snippet: .woocommerce

  • [oceanwp_breadcrumb] Shortcode

    This shortcode allows you to display the breadcrumb: [oceanwp_breadcrumb] Here is a list of the different parameters: class: If you want to add a custom class. color: If you want to add your own color

  • My Icons Are Missing or Showing up as Squares

    *These instructions can only be applied to the OceanWP theme version 1.7.0 and lower, and Ocean Extra plugin version 1.5.16 and lower. If you are using the OceanWP theme version 1.7.1 or above, and

  • Ocean eComm Treasure Box Requirements

    Thank you for choosing Ocean eComm Treasure Box addon for WooCommerce to build your custom eCommerce website! You've made the perfect choice :) In order for your Ocean eComm Treasure Box addon for

  • 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

  • How To Add A Button To Header Menu

    You can create a simple button for any link on the principal navigation. All you need to do is add the class name btn to your menu item and it will create a simple button. To change the color of the b

  • 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

  • How To Access Template OceanWP Metabox Settings

    Welcome to your Ocean eComm Treasure Box addon for WooCommerce! All templates made under the Ocean eComm Treasure Box Template Builder suit to replace the content of the associated pages only. That

  • Alter The WooCommerce Single Product Add To Cart Text

    function my_woocommerce_product_single_add_to_cart_text() { return 'YOUR CUSTOM TEXT'; } add_filter( 'woocommerce_product_single_add_to_cart_text', 'my_woocommerce_product_single_add_to_cart_text', 20

  • Hide WooCommerce Product "Add To Cart" Button

    body.woocommerce ul.products li.product .button { display: none; } All CSS snippets should be added via a child theme's style.css file or using the built-in Custom CSS panel.

  • Alter The WooCommerce Onsale Text

    function my_alter_sale_text() { return ''. __( 'MY CUSTOM TEXT', 'ocean' ) .''; } add_filter( 'woocommerce_sale_flash', 'my_alter_sale_text', 20, 3 ); All PHP snippets should be added via a child them

  • Hide Mobile Menu Searchbar

    /* Hide mobile menu searchform */ .sidr-class-mobile-searchform { display: none !important; } All CSS snippets should be added via a child theme's style.css file or using the built-in Custom CSS panel

  • Hide WooCommerce Cross-Sells

    body .cross-sells { display: none !important; } .woocommerce .cart-collaterals .cart_totals, .woocommerce-page .cart-collaterals .cart_totals { width: 100% !important; } All CSS snippets should be add

  • How to Use Hooks

    function your_function_name() { ?> Insert your custom content here

  • 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

  • Remove or Hide WooCommerce ON SALE Badges

    If you wish to remove/hide WooCommerce ON SALE badges from your product thumbnails, use the following CSS snippet: /*Hide WooCommerce SALES Badges*/ .woocommerce span.onsale { display: none; } All

  • Alter The Widths For The WooCommerce Product Media/Content

    /* Media Width */ .woocommerce div.product div.images { width: 36% !important; } /* Thumbnails Width */ .woocommerce div.product .product-thumbnails { width: 230px !important; } /* Content Width */ .w

  • Adding Non-Clickable Menu Links

    You can easily create non-clickable menu links to any WordPress menu by adding a # symbol for the URL when inserting a custom link. However, when a user clicks it a # symbol will be added to the URL.

  • Make the WooCommerce Quick View Button Always Visible

    By default, the Quick View button on WooCommerce archive pages is not visible until you hover over a product image. If you want to make the Quick View option always visible, use the following CSS

  • Make the Footer Widgets Full Width

    This is a Developer Level doc. If you're unfamiliar with CSS and/or editing files, codes and templates, as well as with resolving possible conflict, please seek help from a professional. Under our

  • 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

  • Edit the Portfolio Slugs

    You can add your own portfolio and portfolio taxonomy (category, tag) slugs in two simple steps: 1 Go to Portfolio > General section of the customizer and add your own slug in the appropriate fields.

  • Center Align WooCommerce Product Title on Mobile Devices

    By default, WooCommerce Single Product Title is aligned left on mobile devices. If you want to center align WooCoomerce Product Title, use the following CSS snippet: @media only screen and

  • Center Align WooCommerce Product Price on Mobile Devices

    By default, WooCommerce Single Product Price is aligned left on mobile devices. If you want to center align WooCoomerce Product Price, use the following CSS snippet: @media only screen and

  • [oceanwp_current_user] Shortcode

    This shortcode allows you to display the current user info where you want: [oceanwp_current_user] Here is a list of the different parameters: text: If you want to add a custom text, default is Welcome

  • Hide Scroll To Top Button On Mobile

    This is a Developer Level doc. If you're unfamiliar with CSS and/or editing files, codes and templates, as well as with resolving possible conflict, please seek help from a professional. Under our

  • Menu is Gone when using Bootstrap

    This is a Developer Level doc. If you're unfamiliar with CSS and/or editing files, codes and templates, as well as with resolving possible conflict, please seek help from a professional. Under our

  • Remove Logo Hover Effect

    This is a Developer Level doc. If you're unfamiliar with CSS and/or editing files, codes and templates, as well as with resolving possible conflict, please seek help from a professional. Under our

  • Hide Navigation Dots on WooCommerce Quick View

    This is a Developer Level doc. If you're unfamiliar with CSS and/or editing files, codes and templates, as well as with resolving possible conflict, please seek help from a professional. Under our

  • Alter WooCommerce Single Product Lightbox Background Color

    This is a Developer Level doc. If you're unfamiliar with CSS and/or editing files, codes and templates, as well as with resolving possible conflict, please seek help from a professional. Under our

  • Display Comment Avatars on Mobile Devices

    This is a Developer Level doc. If you're unfamiliar with CSS and/or editing files, codes and templates, as well as with resolving possible conflict, please seek help from a professional. Under our

  • How To Use Waitlist (Waiting List)

    Welcome to your Ocean eComm Treasure Box! The Waitlist feature is available as of Ocean eComm Treasure Box 1.4.0 version. The Waitlist feature adds brand new functionality to your website and serves

  • Change WooCommerce Short Description Text Color

    This is a Developer Level doc. If you're unfamiliar with CSS and/or editing files, codes and templates, as well as with resolving possible conflict, please seek help from a professional. Under our

  • Hide the Border Before Widget Titles

    This is a Developer Level doc. If you're unfamiliar with CSS and/or editing files, codes and templates, as well as with resolving possible conflict, please seek help from a professional. Under our

  • Display the Sub Menu in Current Page in the Vertical Header Style

    This is a Developer Level doc. If you're unfamiliar with CSS and/or editing files, codes and templates, as well as with resolving possible conflict, please seek help from a professional. Under our

  • Align Main Menu Center on Top Menu Header Style

    This is a Developer Level doc. If you're unfamiliar with CSS and/or editing files, codes and templates, as well as with resolving possible conflict, please seek help from a professional. Under our

  • Change Logo Padding for the Top Menu Header

    This is a Developer Level doc. If you're unfamiliar with CSS and/or editing files, codes and templates, as well as with resolving possible conflict, please seek help from a professional. Under our

  • Footer Callout and Footer Not Sticking to the Bottom of the Page

    This is a Developer Level doc. If you're unfamiliar with CSS and/or editing files, codes and templates, as well as with resolving possible conflict, please seek help from a professional. Under our

  • Online Store Policy

    This Online Store Policy describes what type of Software and Services we offer, as well as how licenses, plans and purchases function. We offer you the option to purchase subscription or lifetime

  • Change the Color of the Hamburger Icon for the Mobile Menu on Sticky Header

    This is a Developer Level doc. If you're unfamiliar with CSS and/or editing files, codes and templates, as well as with resolving possible conflict, please seek help from a professional. Under our

  • Elementor Heading Issues When Using Ocean Sticky Header

    This is a Developer Level doc. If you're unfamiliar with CSS and/or editing files, codes and templates, as well as with resolving possible conflict, please seek help from a professional. Under our

  • Change the Text Color Inside Search Form Widget

    This is a Developer Level doc. If you're unfamiliar with CSS and/or editing files, codes and templates, as well as with resolving possible conflict, please seek help from a professional. Under our

  • Make 'order' and 'download' section responsive under My Account page

    Add the below CSS code to the child theme's style.css file or built-in custom css section to make the 'order' and 'download' section responsive under 'my account' page -  1. Order section - @media scr

  • Problem with Fixed Background Image

    This is a Developer Level doc. If you're unfamiliar with CSS and/or editing files, codes and templates, as well as with resolving possible conflict, please seek help from a professional. Under our

  • Align Title Right or Left on Background Image Page Title Style

    This is a Developer Level doc. If you're unfamiliar with CSS and/or editing files, codes and templates, as well as with resolving possible conflict, please seek help from a professional. Under our