Forum Replies Created

Viewing 30 posts - 17,701 through 17,730 (of 31,382 total)
  • Avatar: Eva
    Eva Kemp
    Participant
    April 12, 2015 at 09:15

    Hello @julija,

    Please provide us with FTP and wp-admin panel credentials in Private Content.

    Thank you.
    Regards,
    Eva Kemp.

    Avatar: Eva
    Eva Kemp
    Participant
    April 12, 2015 at 09:14

    Hello,

    Go to Theme Options > Header > Breadcrumbs Style > select “Default”.

    Thank you.
    Regards,
    Eva Kemp.

    Avatar: Eva
    Eva Kemp
    Participant
    April 12, 2015 at 09:06

    Hello,

    Could you please show a screenshot how you’d like “Add to Cart” button to be displayed?

    Thank you.
    Regards,
    Eva Kemp.

    Avatar: Eva
    Eva Kemp
    Participant
    April 12, 2015 at 09:04

    Hello,

    There is no such option is Visual Composer editor.
    You can change fonts using custom.css file.

    Regards,
    Eva Kemp.

    Avatar: Eva
    Eva Kemp
    Participant
    April 12, 2015 at 09:03

    Hello,

    Go to Theme Options > Import/Export and install the template “Coming Soon Page”. Then select it as a front page in Settings > Reading.

    Thank you.
    Regards,
    Eva Kemp.

    Avatar: Eva
    Eva Kemp
    Participant
    April 12, 2015 at 09:01

    Hello,

    You can enable product excerpt using this code in custom.css:

    .products-grid .product-title {
        position: static !important;
    }
    .products-grid .product-excerpt {
        display: block !important;
    }

    Regards,
    Eva Kemp.

    Avatar: Eva
    Eva Kemp
    Participant
    April 11, 2015 at 18:31

    Hello,

    You’re welcome.

    Regards,
    Eva Kemp.

    Avatar: Eva
    Eva Kemp
    Participant
    April 11, 2015 at 18:29

    Hello,

    You’re welcome.

    Regards,
    Eva Kemp.

    Avatar: Eva
    Eva Kemp
    Participant
    April 11, 2015 at 17:21

    Hello,

    Please provide us with FTP and wp-admin panel credentials in Private Content.

    Thank you.
    Regards,
    Eva Kemp.

    Avatar: Eva
    Eva Kemp
    Participant
    April 10, 2015 at 21:52

    Hello,

    Unfortunately there is no such option. You may also refer to Revolution Slider documentation.

    Regards,
    Eva Kemp.

    Avatar: Eva
    Eva Kemp
    Participant
    April 10, 2015 at 21:51

    Hello,

    We’re investigating the issue.
    You’ll be notified as soon as possible.

    Please take our apologies.
    Thank you for understanding and patience.

    Regards,
    Eva Kemp.

    Avatar: Eva
    Eva Kemp
    Participant
    April 10, 2015 at 21:49

    Hello,

    Checkout page was modified in the latest Woocommerce update.
    Our demo site still uses old Woocommerce plugin version that’s why layout differs.
    Sorry, but this is Woocommerce configuration.

    Thank you for understanding.
    Regards,
    Eva Kemp.

    Avatar: Eva
    Eva Kemp
    Participant
    April 10, 2015 at 21:40

    Hello,

    Edit other sliders in wp-admin panel > Revolution Slider > select slider to edit and set Slider Layout to “Auto Responsive” and Grid Height to 600 or other value.

    Regards,
    Eva Kemp.

    Avatar: Eva
    Eva Kemp
    Participant
    April 10, 2015 at 21:38

    Hello,

    Please add this code in custom.css file:

    .meta-title {
       display: none !important;
    }

    How to create custom.css you can watch in this tutorial (it’s for Legenda theme but the process is the same).
    You can translate that text in .po file in wp-content/themes/woopress/languages directory as described in our documentation:
    https://www.8theme.com/demo/docs/woopress/#!/1_how_to_translate

    Thank you.
    Regards,
    Eva Kemp.

    Avatar: Eva
    Eva Kemp
    Participant
    April 10, 2015 at 21:35

    Hello @bgirer,

    So is your issue resolved?
    If it is you don’t need to disable plugins.

    Thank you.
    Regards,
    Eva Kemp.

    Avatar: Eva
    Eva Kemp
    Participant
    April 10, 2015 at 21:33

    Hello,

    The problem is caused by one of the plugins. Please disable them one by one to find it out.

    Thank you.
    Regards,
    Eva Kemp.

    Avatar: Eva
    Eva Kemp
    Participant
    April 10, 2015 at 19:56

    Hello,

    I’ve changed height value in the settings for the slider “SUBZERO WOLF”.
    Please check.

    Thank you.
    Regards,
    Eva Kemp.

    Avatar: Eva
    Eva Kemp
    Participant
    April 10, 2015 at 19:53

    Hello,

    You’re welcome.

    Regards,
    Eva Kemp.

    Avatar: Eva
    Eva Kemp
    Participant
    April 10, 2015 at 18:54

    Hello,

    I’ve set Slider Layout as “Auto Responsive” in the settings for the slider “SUBZERO WOLF”.
    Please check the content now.

    Thank you.
    Regards,
    Eva Kemp.

    Avatar: Eva
    Eva Kemp
    Participant
    April 10, 2015 at 18:43

    Hello,

    You need add this code in functions.php of your child theme or a parent theme:

    function woo_remove_lightboxes() {
             
            // Styles
            wp_dequeue_style( 'woocommerce_prettyPhoto_css' );
             
            // Scripts
            wp_dequeue_script( 'prettyPhoto' );
            wp_dequeue_script( 'prettyPhoto-init' );
            wp_dequeue_script( 'fancybox' );
            wp_dequeue_script( 'enable-lightbox' );
    }
      
    add_action( 'wp_enqueue_scripts', 'woo_remove_lightboxes', 199 );

    Then lightbox will be disabled.

    Thank you.
    Regards,
    Eva Kemp.

    Avatar: Eva
    Eva Kemp
    Participant
    April 10, 2015 at 18:41

    Hello,

    You can install a template in Theme Options > Import/Export, click “Install version”.

    Regards,
    Eva Kemp.

    Avatar: Eva
    Eva Kemp
    Participant
    April 10, 2015 at 18:37

    Hello,

    I’ve added this code in functions.php of your child theme:

    /* Remove WooCommerce styles and scripts. */
    function woo_remove_lightboxes() {
             
            // Styles
            wp_dequeue_style( 'woocommerce_prettyPhoto_css' );
             
            // Scripts
            wp_dequeue_script( 'prettyPhoto' );
            wp_dequeue_script( 'prettyPhoto-init' );
            wp_dequeue_script( 'fancybox' );
            wp_dequeue_script( 'enable-lightbox' );
    }
      
    add_action( 'wp_enqueue_scripts', 'woo_remove_lightboxes', 199 );
    ?>

    Now lightbox isn’t shown.
    Please clear browser cache and check.

    Thank you.
    Regards,
    Eva Kemp.

    Avatar: Eva
    Eva Kemp
    Participant
    April 10, 2015 at 17:13

    Hello,

    I’ve edited shortcodes.php file in the directory wp-content/themes/royal/framework and now mail links are working. Please check and clear browser cache before.
    Keep this file safe not to lose changes after theme update.

    Thank you.
    Regards,
    Eva Kemp.

    Avatar: Eva
    Eva Kemp
    Participant
    April 10, 2015 at 17:06

    Hello,

    Please add this code:

    @media (max-width: 480px) { .wpb_single_image img {
        margin-left: -30px !important;
    }}

    Sorry, but your query concerning the slider is a bit unclear. Could you please clarify with more details?

    Thank you.
    Regards,
    Eva Kemp.

    Avatar: Eva
    Eva Kemp
    Participant
    April 10, 2015 at 16:53

    Hello,

    Unfortunately there is no such possibility to make all images shown on a mobile device.
    Try to add more images to your gallery to fill in that free space.

    Thank you.
    Regards,
    Eva Kemp.

    Avatar: Eva
    Eva Kemp
    Participant
    April 10, 2015 at 16:46

    Hello,

    I’ve updated WordPress to the latest version and the content is shown in the editor now:
    http://storage3.static.itmages.com/i/15/0410/h_1428680696_3286952_f8e285762e.png
    Please clear browser cache and check.

    Thank you.
    Regards,
    Eva Kemp.

    Avatar: Eva
    Eva Kemp
    Participant
    April 10, 2015 at 16:17

    Hello,

    Please clarify where you want to create an anchor.
    What item should be clicked to move to a certain section of a page?
    Also give permissions to view all settings in wp-admin panel.

    Thank you.
    Regards,
    Eva Kemp.

    Avatar: Eva
    Eva Kemp
    Participant
    April 10, 2015 at 16:06

    Hello,

    You’re welcome.

    Regards,
    Eva Kemp.

    Avatar: Eva
    Eva Kemp
    Participant
    April 10, 2015 at 16:06

    Hello,

    You’re welcome.

    Regards,
    Eva Kemp.

    Avatar: Eva
    Eva Kemp
    Participant
    April 10, 2015 at 15:37

    Hello,

    Please provide us with wp-admin panel credentials in Private Content.

    Thank you.
    Regards,
    Eva Kemp.

  • 1 2 3 590 591 592 1,045 1,046 1,047
    Viewing 17,730 results - 17,701 through 17,730 (of 31,382 total)
Viewing 30 posts - 17,701 through 17,730 (of 31,382 total)
We're using our own and third-party cookies to improve your experience and our website. Keep on browsing to accept our cookie policy.