Codeless
  • Support Home
  • Themes
  • Support
  • WordPress Tutorials
    • How to Start a Blog
    • Best Website Builders
    • Best Small Business Hosting
    • Email Marketing Services
    • Cheap WordPress Hosting
  • Video Tutorials

Community Forums

  • Profile
  • Topics Started
  • Replies Created
  • Favorites

Forum Replies Created

  • 6 years, 6 months ago Mirela
    Participant
    in reply to: Product title link

    Hello,

    What are you trying to do? In my side, when i hover over the title, the hand shows up. Are you not getting this?

    Let us know.
    Regards!

    6 years, 6 months ago Mirela
    Participant
    in reply to: Site breakdown after updating theme

    Hello,

    Please make the changes suggested in the last reply. Then try activating Kirki plugin again.

    Let us know.
    Best regards!

    6 years, 6 months ago Mirela
    Participant
    in reply to: Product title link

    Hello,

    This is a feature that has been changed from Woocommerce in the latest versions. The online demo has a very old woocommerce. The product title in the shop page is controlled by the plugin’s functions.
    I can’t log in in the WordPress dashboard, but I did add this hook in the functions-woocommer.php file:

    /** 
    *  Set product title as link to product page
    **/
    // define the woocommerce_shop_loop_item_title callback 
    remove_action( 'woocommerce_shop_loop_item_title', 'woocommerce_template_loop_product_title', 10, 2 ); 
    
    if ( ! function_exists( 'codeless_woocommerce_template_loop_product_title' ) ) { 
        /**
         * Show the product title in the product loop. By default this is an H2.
         */
        function codeless_woocommerce_template_loop_product_title() {
            global $product;
    
            $link = apply_filters( 'woocommerce_template_loop_product_title', get_the_permalink(), $product );
    
            
    
            echo '<a href="' . esc_url( $link ) . '"><h2 class="' . esc_attr( apply_filters( 'woocommerce_product_loop_title_classes', 'woocommerce-loop-product__title' ) ) . '">' . get_the_title() . '</h2></a>'; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
        } 
    }; 
             
    // add the action 
    add_action( 'woocommerce_shop_loop_item_title', 'codeless_woocommerce_template_loop_product_title', 10, 2 ); 

    Using the ftp credentials in your profile.
    See a screenshot of the added code: https://ibb.co/RgSRR8m

    Please refresh site and let us know.

    Best regards!

    6 years, 6 months ago Mirela
    Participant
    in reply to: Mobile Logo & Menu Color Change

    Hello,


    @nadeembuilds
    , please refresh your profile data with valid credentials for the new site. So we can give it a closer look.

    Best regards!

    6 years, 6 months ago Mirela
    Participant
    in reply to: Space

    Hello,

    Can you please try again now? I deactivated the AP Mega menu plugin and make a test in the Sample Page. See result: https://ibb.co/Vj5PFBL

    I refreshed and never get the ‘{‘ in the design box.

    Let us know.
    Best regards!

    6 years, 6 months ago Mirela
    Participant
    in reply to: Remove slider from mobile phone view

    You’re welcome :)

    If you like our theme and support, leave us a rating on Themeforest, it’s very important for us :)

    https://themeforest.net/downloads

    Thank You so much!

    6 years, 6 months ago Mirela
    Participant
    in reply to: Codeless not loading

    Hello,

    You have an Internal Server error issue. The file wp-includes/js/jquery/jquery.js is not found. This is one of the wordpress core files. Please contact your host first and let them know about the error. Make sure all wordpress files are being loaded correctly.

    After this, please update theme and all it’s included plugins! The latest version is 1.7.5 and has many important changes made.

    Let us know how it goes.

    Best regards!

    6 years, 6 months ago Mirela
    Participant
    in reply to: Add Facebook Script

    Hello,

    The body tag includes all the footer as well. I suggest you add your code before the closing div tag in line 12.

    Or even better, try adding the script in Specular > General Options > Custom JS Code.
    Let us know.

    Best regards!

    6 years, 6 months ago Mirela
    Participant
    in reply to: Change Slug

    Hello,

    This happens due to the change of the permalinks structure. The server needs more time to reflect the changes to all links. Try resetting permalinks again. If the issue persists, rename the .htaccess file in your WordPress installation root folder (in the server). Reset permalinks again.

    Let us know.
    Best regards!

    6 years, 6 months ago Mirela
    Participant
    in reply to: Strings Translations

    Hello,

    Sorry for the late reply.
    1-Are you sure you want to do this? In mobile the background of the header is white and that’s why the dark logo is used by default so it’s visible. If you use the light one, it will not be visible.
    A solution to this, without any additional custom css, is to add the light logo in both “light” and “dark” versions. See screenshot: https://ibb.co/vj7dHDZ
    So no matter the type of header style, the same light logo will load. This works if you intend to use only one logo throughout your site.

    But if you will use the dark version as well, then to make the light logo show in mobile, add this code into your Custom Css box:

    @media (max-width: 979px){
    .background--dark #logo img.dark {
        display: none;
        visibility: hidden;
    }
    .background--dark #logo img.light {
        display: block;
        visibility: visible;
    }}

    2-All text in theme is translatable, so i suggest you better use the pot files to change the “blog” page title. See this article about it: https://support.ellethemes.com/?ht_kb=translate-site-using-po-mo-files

    3-Yes, please add this code into your Custom Css box:

    .postid-888 .header_wrapper {
        background-color: #b7b5b5 !important;
    }

    Change the color to your wish.

    Let us know.
    Best regards!

    6 years, 6 months ago Mirela
    Participant
    in reply to: Site breakdown after updating theme

    Hello,

    Please go to your stage site’s wp-plugin folder. Use a FTP account for it or through cpanel. Then rename all plugins. This will deactivate them instantly so we will be able to access the wordpress dashboard.
    Send us some wp login credentials then. So we can check it from there/

    Best regards!

    6 years, 6 months ago Mirela
    Participant
    in reply to: Mobile Logo & Menu Color Change

    Hello,

    The logo on mobile is a link to the homepage as well as in the desktop layout. Are you not having this? Please add a link to your site so we can check.

    Best regards!

    6 years, 6 months ago Mirela
    Participant
    in reply to: Remove slider from mobile phone view

    Hello,

    Add this css:

    @media (max-width:767px){
    .home .slider#slider-fullwidth {
        display:none;
    }}

    Let us know.
    Best regards!

    6 years, 6 months ago Mirela
    Participant
    in reply to: Change Slug

    Hello,

    I edited the file. DO you have any cache installed in the server? Please flush cache and refresh pages. Some servers need more time to show changes so i suggest you wait a bit and refresh pages again.

    Let us know how it goes.
    Best regards!

    6 years, 6 months ago Mirela
    Participant
    in reply to: Pbm with site layout

    Hello,

    There are some files not being loaded on your site due to the cross-origin restriction. See screenshot: https://ibb.co/6DrPjQn
    Did you had any other plugin installed when you imported the demo data? Most of the code is being pulled as text instead of shortcodes. That’s why the footer is not visible.
    I replaced the shortcodes of homepage and then they displayed ok. Please check your site now.

    Let us know.

    Best regards!

Viewing 15 posts - 196 through 210 (of 12,542 total)
← 1 2 3 … 13 14 15 … 835 836 837 →

Site Links

  • Support Policy
  • Specular Support Forum
  • Video Tutorials
  • Knowledge Base
  • Guides and Reviews

Useful Articles

  • Build a Website
  • Web Design & Development
  • Hosting
  • WordPress

Login

Log In
Register Lost Password