Forum Replies Created

Viewing 30 posts - 11,851 through 11,880 (of 16,203 total)
  • Avatar: Jack Richardson
    Jack Richardson
    Support staff
    October 5, 2015 at 19:16

    Hello,

    I’ve edited the code in Global Custom CSS and added “menu-column5” class to “หนังสือทั้งหมด” parent menu item in Appearance > Menus. Please check the menu now.

    Best regards,
    Jack Richardson.

    Avatar: Jack Richardson
    Jack Richardson
    Support staff
    October 5, 2015 at 18:09

    Hello,

    As I see your theme version is 1.7.1:
    http://storage6.static.itmages.com/i/15/1005/h_1444064955_4868449_ed7376bb73.png

    Please update it.

    Best regards,
    Jack Richardson.

    Avatar: Jack Richardson
    Jack Richardson
    Support staff
    October 5, 2015 at 17:55

    Hello,

    Please provide us with WP Dashboard credentials in private content.

    Best regards,
    Jack Richardson.

    Avatar: Jack Richardson
    Jack Richardson
    Support staff
    October 5, 2015 at 17:52

    Hello,

    No menu is set now.
    Please provide us with WP Dashboard credentials in private content.

    Best regards,
    Jack Richardson.

    Avatar: Jack Richardson
    Jack Richardson
    Support staff
    October 5, 2015 at 17:50

    Hello,

    I’ve edited the code to:

    .page-content {
       display: inline-block;
    }

    Please check now.

    Best regards,
    Jack Richardson.

    Avatar: Jack Richardson
    Jack Richardson
    Support staff
    October 5, 2015 at 17:34

    Hello,

    You’re welcome.

    Best regards,
    Jack Richardson.

    Avatar: Jack Richardson
    Jack Richardson
    Support staff
    October 5, 2015 at 17:28

    Hello,

    You’re welcome.

    Best regards,
    Jack Richardson.

    Avatar: Jack Richardson
    Jack Richardson
    Support staff
    October 5, 2015 at 17:19

    Hello,

    You’ve been replied in that topic already.
    This topic will be closed.

    Best regards,
    Jack Richardson.

    Avatar: Jack Richardson
    Jack Richardson
    Support staff
    October 5, 2015 at 16:58

    Hello Sébastien,

    Please take our apologies for the delay.
    1. There was odd curly bracket in your custom css file that’s why code after that line didn’t work. I’ve fixed the problem and also added css code to decrease font:

    .span3.sidebar.sidebar-left .product_list_widget a {
    	font-size: 12px !important;
    }

    If you want to leave large image just remove previously provided css code.

    2. Try the following css code to change background color for the shop page and single product page.

    Best regards,
    Jack Richardson.

    Avatar: Jack Richardson
    Jack Richardson
    Support staff
    October 5, 2015 at 15:46

    Hello,

    1. Please show a page where social icons are shown and specify if you want to change background color of the icons or color of icons themselves.

    2. Please refer to this article:
    https://www.8theme.com/blog/how-to-add-social-media-icons-to-wordpress-menus/

    3. You can change breadcrumbs background in Theme Options > Color Scheme > Breadcrumbs background. If you want to set different background images for different pages then go to Pages > edit a page > upload image in “Background image for breadcrumbs” field in “Page Layout” box.

    4. Add this code in Theme Options > Global Custom CSS:

    .breadcrumbs span.current {
        display: none;
    }

    5. You can use Woocommerce Layered Nav Filters widget in Appearance > Widgets and add it into “Shop Sidebar” area.

    6. Sorry, but there is no such possibility.

    7. Please show the issue on a screenshot and give us a direct link of the page.

    8. Please refer to this article:
    https://support.woothemes.com/hc/en-us/articles/203447633-How-to-Disable-Product-Reviews

    9. You should refer to Woocommerce documentation regarding this question:
    https://docs.woothemes.com/document/editing-product-data-tabs/

    Best regards,
    Jack Richardson.

    Avatar: Jack Richardson
    Jack Richardson
    Support staff
    October 5, 2015 at 14:43

    Hello,

    I’ve reverted the changes back.
    Please clear browser cache and check the site.

    Best regards,
    Jack Richardson.

    Avatar: Jack Richardson
    Jack Richardson
    Support staff
    October 5, 2015 at 14:39

    Hello,

    You are welcome!

    Best regards,
    Jack Richardson.

    Avatar: Jack Richardson
    Jack Richardson
    Support staff
    October 5, 2015 at 14:37

    Hello,

    Here is the screenshot http://prntscr.com/8nzayq where you can see that alt attribute persists.

    Best regards,
    Jack Richardson.

    Avatar: Jack Richardson
    Jack Richardson
    Support staff
    October 5, 2015 at 14:29

    Hello @UrbnDesignz,

    Please read our documentation https://www.8theme.com/demo/docs/royal/#!/3_one_page , in the new theme version anchor should be written in “Row ID” field instead of “Anchor for one page navigation” field.
    Please edit your rows.

    Best regards,
    Jack Richardson.

    Avatar: Jack Richardson
    Jack Richardson
    Support staff
    October 5, 2015 at 14:22

    Hello,

    That block is created with Visual Composer editor using Text element and added background image for column. Try to use VC editor to make it.

    Best regards,
    Jack Richardson.

    Avatar: Jack Richardson
    Jack Richardson
    Support staff
    October 5, 2015 at 12:48

    Hello,

    You are welcome!

    Best regards,
    Jack Richardson.

    Avatar: Jack Richardson
    Jack Richardson
    Support staff
    October 5, 2015 at 12:45

    Hello,

    1. You can short product title using this code in wp-content/themes/blanco/functions.php :

    add_filter( 'the_title', 'shorten_woo_product_title', 10, 2 );
    function shorten_woo_product_title( $title, $id ) {
    if (get_post_type( $id ) === 'product' ) {
    return wp_trim_words( $title, 4 ); // change last number to the number of WORDS you want
    } else {
    return $title;
    }
    }

    2. Please provide your website url in private content.

    Best regards,
    Jack Richardson.

    Avatar: Jack Richardson
    Jack Richardson
    Support staff
    October 5, 2015 at 12:21

    Hello,

    I’ve set Sidebar Position to “Without Sidebar” in the page “Tool Repair”. Please check the page now:
    http://storage4.static.itmages.com/i/15/1005/h_1444042346_6912340_97fa79c03e.png

    I’ve edited the file header-structure-4.php in Appearance > Editor and added this code to show search box:

    <div class="header_search_form"><?php 
                                if(!class_exists('WooCommerce')) {
                                    get_search_form();
                                } else {
                                    get_template_part('woosearchform'); 
                                }   
                            ?></div>

    and I’ve added this code in Custom CSS for desktop:

    .header_search_form .modal-form {
        margin: 5px 20px 0px;
    }
    .navbar-right .navbar-right {
       width: 300px;
    }
    .header_search_form {
      width: 200px;
    }
    
    .header_search_form .col-xs-10 {
      padding-left: 0px;
    }
    
    .header_search_form .has-border > div {
       margin: 0px;
    }

    Please check your site now.

    Best regards,
    Jack Richardson.

    Avatar: Jack Richardson
    Jack Richardson
    Support staff
    October 5, 2015 at 11:43

    Hello,

    The issue has been fixed.
    Please check.

    Best regards,
    Jack Richardson.

    Avatar: Jack Richardson
    Jack Richardson
    Support staff
    October 5, 2015 at 11:34

    Hello,

    The credentials are incorrect.
    Please check them.

    Best regards,
    Jack Richardson.

    Avatar: Jack Richardson
    Jack Richardson
    Support staff
    October 5, 2015 at 11:15

    Hello,

    1. If you want to replace demo footer you need to add widgets as described in the documentation:
    https://www.8theme.com/demo/docs/blanco/#!/widgets

    2. I’ve uploaded background pattern example in Blanco – Theme Settings > Color Scheme.

    3. Unfortunately there is no feature to set up fonts in theme options but you can do it as described here https://www.8theme.com/blog/how-to-add-custom-fonts-in-wordpress-themes/

    4. You need to create your own banners, upload them to images directory on your server and change “img src” path in home page editor (see the screenshot http://prntscr.com/8nxbe2 ).

    5. Add text widget in Appearance > Widgets > Footer Copyrights area as described in the documentation https://www.8theme.com/demo/docs/blanco/#!/widgets and change links to your needs.

    6. If you use WooCommerce plugin you may also use WooCommerce shortcodes. To make them work in our theme, you need to insert prefix “etheme_” before shortcode words. For example: [etheme_best_selling_products per_page=”12″] will display best selling products and [etheme_product_category category=” “] – multiple products in a category by slug etc. (https://www.8theme.com/demo/docs/blanco/#!/blanco_shortcodes)

    7. As I see you have added text widgets in Appearance > Widgets > Home Page Sidebar and Product Page Sidebar. Remove them or move to appropriate widget area.

    Best regards,
    Jack Richardson.

    Avatar: Jack Richardson
    Jack Richardson
    Support staff
    October 5, 2015 at 10:09

    Hello,

    Please add this code in custom.css:

    .header-type-10 .menu-wrapper .menu-main-container > ul > li > a {
      border-left: none;
    }
    .header-type-10 .menu-wrapper .menu-main-container > ul > li:last-child > a {
       border-right: none;
    }
    .content-page, .page-content {
        margin-top: 0px;
    }
    
    .page-content {
        margin-bottom: 0px;
    }

    Best regards,
    Jack Richardson.

    Avatar: Jack Richardson
    Jack Richardson
    Support staff
    October 5, 2015 at 10:04

    Hello,

    Try to use this code in Theme Options > Custom CSS > Custom CSS for desktop:

    .sidebar-position-without .product-category, .products-grid .product-category {
        width: 25% !important;
    }

    Best regards,
    Jack Richardson.

    Avatar: Jack Richardson
    Jack Richardson
    Support staff
    October 5, 2015 at 09:47

    Hello,

    I’ve updated your theme to the latest version.
    Please check the site now.

    Best regards,
    Jack Richardson.

    Avatar: Jack Richardson
    Jack Richardson
    Support staff
    October 5, 2015 at 09:40

    Hello,

    Please update the theme to the latest version.
    Before update delete “woocommerce” folder in the directory wp-content/themes/royal/ and it’ll be reuploaded from a new theme package.
    Also update all required plugins https://www.8theme.com/download-plugins/ .

    Don’t forget to create back up of your files and database before starting update process!


    (it’s for Legenda theme but the process is the same).

    Best regards,
    Jack Richardson.

    Avatar: Jack Richardson
    Jack Richardson
    Support staff
    October 5, 2015 at 09:28

    Hello,

    Glad to hear it.

    Have a nice day.

    Best regards,
    Jack Richardson.

    Avatar: Jack Richardson
    Jack Richardson
    Support staff
    October 5, 2015 at 09:27

    Hello,

    Please provide us with WP Dashboard and FTP credentials in private content.

    Best regards,
    Jack Richardson.

    Avatar: Jack Richardson
    Jack Richardson
    Support staff
    October 5, 2015 at 09:25

    Hello,

    Please try to use this element in Visual Composer editor:
    http://storage5.static.itmages.com/i/15/1005/h_1444033505_1909433_157423fe00.png

    Thank you.
    Best regards,
    Jack Richardson.

    Avatar: Jack Richardson
    Jack Richardson
    Support staff
    October 5, 2015 at 09:15

    Hello,

    Please add this code in Theme Options > Custom CSS > Global Custom CSS:

    body {
        font-family: "Open Sans";
    }
    .menu > li a {
        font-family: "Roboto";
    }
    h1, h2, h3, h4, h5, h6 {
        font-family: "Roboto",Georgia,sans-serif;
    }

    Best regards,
    Jack Richardson.

    Avatar: Jack Richardson
    Jack Richardson
    Support staff
    October 5, 2015 at 08:59

    Hello,

    Please provide us with WP Dashboard credentials.

    Best regards,
    Jack Richardson.

  • 1 2 3 395 396 397 539 540 541
    Viewing 11,880 results - 11,851 through 11,880 (of 16,203 total)
Viewing 30 posts - 11,851 through 11,880 (of 16,203 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.