Search results for 성기능개선제후불제 ? Via182.XYZ ㎌여성 최음제 구매처┌스페니쉬 프라이 판매 사이트♂파워 이렉트 구입 사이트╇남성정력제 부작용_레비트라 구입 사이트╀여성최음제사용법┰발기부전치료제판매처사이트∞카마그라젤 구입후기↙

430 articles found

  • How to Display my Portfolio?

    You can display your portfolio items in two different ways: 1. Via the Portfolio page template Create a new page, for example "Portfolio" and choose the Portfolio page template like the screenshot bel

  • 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

  • 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

  • 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

  • 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

  • How To Enable Color Swatches for WooCommerce Variable Product Attributes

    First, download  WooCommerce Variation Swatches plugin, you can also install it via your site backend as well. Head to your site dashboard and navigate to Plugins >> Add New. Search for WooCommerce Va

  • How to Create Modal

    You can create modal very easily to display what you want with the free Ocean Modal Window extension. To do this, follow this simple steps: 1. Create your modal Go to Modal > Add New, add a title for

  • Add/Remove/Edit The Social Sharing Links

    With this extension you can add social sharing buttons with a beautiful style to your single posts. If you wish add, remove or edit the social sharing links, it very easy, follow this steps: 1 Create

  • How to Add Social Login

    Adding a social login will make your user or customer easier to log into your site, to integrate social login with the Popup Login extensions please follow the steps below: Install and activate the Po

  • Get your Google Map API Key

    It is very easy to get your Google Map API Key, follow these steps: 1 First, go to this site: click here. 2 Click the Get Started button at the middle of the page. A popup will open, check Maps and cl

  • Activate the Popup on Single Product

    To activate the Woo Popup on the single product page, you just need to enable ajax for the single products. Go to the WooCommerce > Single Product section of the customizer and check the Enable Ajax A

  • 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.

  • 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(

  • 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

  • [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

  • How to build advanced websites based on custom post types with Toolset and OceanWP?

    Toolset allows you to create custom post types, and design content templates. OceanWP theme is now custom types ready, meaning that you can control theme settings for each template, individually. In t

  • 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.

  • Add/Remove/Edit The Social Product Sharing Links

    With this extension you can add social sharing buttons with a beautiful style to your single product page. If you wish add, remove or edit the social sharing links, it very easy, follow this steps: 1

  • 404 Error with the Portfolio Pagination

    If you have a 404 error when trying to go to the next page in your portfolio, this is a slug conflict between your page and your portfolio items. To fix this problem, rename the slug of your page or t

  • the_content is Missing With Your Page Builder

    If you can't use your page builder to create your single portfolio items, check if you haven't disable the Content in the Portfolio > Single Portfolio Item section of the customizer.

  • Add Language Files In Child Theme

    function my_child_theme_locale() { load_child_theme_textdomain( 'ocean', get_stylesheet_directory() . '/languages' ); } add_action( 'after_setup_theme', 'my_child_theme_locale' ); All PHP snippets sho

  • 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.

  • Header Search

    The Ocean theme includes an advanced function for displaying a search bar in your header that can be toggled via a little search icon in your menu. Enabling/Disabling To enable or disable this item yo

  • Mobile Menu Shows "Undefined" Word

    If you use the Sidebar mobile menu style, it is possible that you encounter the word Undefined, here the solutions to solve this issue: 1. If the Undefined word replace the Close button and you using

  • Array Word Next to the Logo

    If you have an array next to your logo, go to the Header > Logo section of the customizer and remove or add your retina logo.

  • What is Distraction Free?

    You can see a Distraction Free setting for your cart and checkout pages, this setting is to increase conversions by removing any distraction like the navigation or the footer.

  • Disable Zoom, Lightbox and Gallery Slider on WooCommerce Products

    To disable the Zoom, Lightbox and Gallery slider effect on Woocommerce Products, add the below code snippet to the functions.php file of the child theme -  function wc_remove_image_effect_support() {

  • Edit The Popup Template

    With this extension you can display a popup when you click on the Add To Cart button of your products. All the options to customize the popup are in the customizer but if you want add specific things,

  • 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 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

  • 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

  • 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

  • Add Category Description in the Category Page

    To add your post category description in your category page, follow its steps: 1 Go to the theme folder, copy the index.php file and paste it into your child theme. 2 Rename this file in category.php

  • Adding Videos To Standard Posts

    To add a video all you need to do is select the Video format then add in your video URL in the Ocean Settings. See the screenshots below. Self Hosted Videos? Yes you can add these as well, simply use

  • My Custom Sized Images are not Displayed

    There are some settings in the customizer to allow you to add a custom size for your blog images or related posts images, the images are sized on the fly, that means, they are not stored in your datab

  • Sticky Header for the Custom Header Style

    Since version 1.0.2 of the Ocean Sticky Header extension, a new option specially designed for the Custom Header style has been added. Two options are available for this field: Auto: Automatically stic

  • Add/Remove/Edit The Footer Bar

    If you wish add, remove or edit the footer bar elements, it very easy, follow this steps: 1 Create a templates folder into your child theme. 2 Create a extra folder into templates. 3 Copy and paste th

  • Display the Latest Posts in Slider

    You can display your latest posts in slider with a shortcode. First, install and activate the free Ocean Posts Slider plugin, when the plugin is activated, a new post type will appear Posts Slider, fo

  • [osp_btn] Shortcode

    This shortcode allows you to display the side panel opening button where you want: [osp_btn] Here is a list of the different parameters: icon: If you want to add your own icon. Note, this parameter do

  • How to Configure the Notice

    The Cookie Notice can be configured via the Cookie Notice section of the customizer, so go to your dashboard, click Appearance > Customize and click the Cookie Notice section.

  • How to Use Hooks

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

  • 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 Social Share Buttons Under the Short Description

    /** * Add social share buttons under the short description */ function woo_social_share_under_desc() { // Vars $product_title = get_the_title(); $product_url = get_permalink(); $product_img = wp_get_a

  • 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

  • Disable Mobile Menu Search Form

    By default a search form is present to the mobile menu so your mobile visitors can easily search your site. However, if you don’t want it or don’t like it you can disable it via the settings at Appear

  • How Making OceanWP Multilingual with Weglot Translate?

    This is a 2-step guide to make your OceanWP website multilingual with Weglot. First, you’ll need to add Weglot to your WordPress admin and then you will be able to manage your translations from your W

  • Get your MailChimp API Key and List ID

    It is very easy to get your MailChimp API Key and List ID, follow these steps: 1 First, login to your account: click here. 2 For your API Key, click on your name at the top right, click Account. Now,

  • [oceanwp_site_url] Shortcode

    This shortcode is to display a link with the name of your site that sends on the home page: [oceanwp_site_url] You can add your own target between: self: The link opens on the same page. blank: The li

  • How To Add Custom Fonts

    You could easily add a custom font via a child theme. 1. First Add Your Font To Your Child theme Below are the condensed steps for adding a custom font to your child theme, this, of course, assumes yo

  • [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