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

  • 8 years, 2 months ago Mirela
    Participant
    in reply to: Hamburger menu not closing on one page

    Hello,

    Please enable again the wp credentials set in your profile data. So we can do this for you.

    Best regards!

    8 years, 2 months ago Mirela
    Participant
    in reply to: cambiar enlaces carrito

    Hello,

    You can use theme’s included .pot files. check out this article explaining it more in details: https://support.ellethemes.com/?ht_kb=translate-site-using-po-mo-files

    Or translate them directly from theme files:
    june\woocommerce\header-login-box.php
    june\woocommerce\myaccount\form-login.php

    This is not recommended as it will prevent you from taking future theme updates. Or you will need to redo the changes in every update.

    Let us know.

    Best regards!

    8 years, 2 months ago Mirela
    Participant
    in reply to: "Similar Styles" products not displaying properly

    Hello,

    I opened the product page and the “Similar Styles” did show up with animation (bottom-top display). Please see a screen recording of it: https://drive.google.com/file/d/1iQ-bWk_Ypg0jKA9DVvmHoDkE_APyEOG9/view

    I opened from Chrome. What browser are you using? Do you have any add-ons installed?
    Let us know.

    Best regards!

    8 years, 2 months ago Mirela
    Participant
    in reply to: How to set "add to cart"

    Hello,

    Can you please enable again the credentials in your profile data? So we can give it a look and help you.

    Best regards!

    8 years, 2 months ago Mirela
    Participant
    in reply to: Codeless Slider Typography size on responsive

    Hello,

    The little icons of a desktop, pad and phone function is to show you how the page will look when opened from a ipad/mobile. This is useful mostly to check the responsiveness of the site. sorry you can not change the responsive layout while one of these buttons is active.

    To change the responsive style, use custom css. Wrap the css inside the @media rule. If you send us a link of the site, we can help you out with it.
    Let us know.

    Best regards!

    8 years, 2 months ago Mirela
    Participant
    in reply to: How to set the product image to 600*900 ?

    Hello,

    Sorry for the speedy mistake. Please go to Customizer > Woocommerce > Product Images (screenshot), to reset product image size. upload images again after saving changes or regenerate thumbnails using a custom plugin.

    Best regards!

    8 years, 2 months ago Mirela
    Participant
    in reply to: How to set "add to cart"

    Hello,

    Are the products are set as “Simple product”? Can you please check and let us know.

    Best regards!

    8 years, 2 months ago Mirela
    Participant
    in reply to: Hamburger menu not closing on one page

    Hello,

    The edit you did last time is explained in this topic of yours: https://support.codeless.co/?topic=stuck-loading-customise-screen
    Please redo the suggested changes and let us know if you need further help.

    Best regards!

    8 years, 2 months ago Mirela
    Participant
    in reply to: Position Products

    Hello,

    Please check your site. The developer has already fixed the issue in the code.
    Let us know.

    Best regards!

    8 years, 2 months ago Mirela
    Participant
    in reply to: Page Fullwidth Content problem with new version

    Hello,

    Can you please try adding this code into Customize > General > Custom Codes > Custom Css:

    .archive main#main {
        padding-left: 10%;
        padding-right: 10%;
    }

    Change the padding value to your wish.
    I tried to login using the default url to admin panel, but it’s leading to a not found page. Can you please send us the link to the admin panel?

    Best regards!

    8 years, 2 months ago Mirela
    Participant
    in reply to: Unable to upload theme

    Hello,

    You may need more memory limit or to have more access right on your wordpress installation.
    Please make sure to have all needed requirement for June theme. You can check them out here: https://codeless.co/june/documentation/#requirements
    Or try uploading theme manually using a ftp account.
    Let us know.

    Best regards!

    8 years, 2 months ago Mirela
    Participant
    in reply to: Weird Issue: May We Suggest Hashtags Showing Up

    Hello,

    Yes, that chunk of code is present in all these files:
    \folie\404.php
    \folie\functions.php
    \folie\search.php

    Your solution is one of the possible ways. And it’s good. This is a feature added to complete the search feature, but if you have that much tags as seen in the screenshot you added, that can ruin rather than fix the search experience.

    However, you do not have to completely remove it. You can just limit the number of tags to show. For this, redo the changes and then go to file functions.php and find thi section:

    /**
     * Return HTMl of all tags with appropiate link
     * @since 1.0.0
     */
    function codeless_all_tags_html(){
        $tags = get_tags();
        $html = '<div class="post_tags">';
        foreach ( $tags as $tag ) {
            $count++;  
            $tag_link = get_tag_link( $tag->term_id );
                  
            $html .= " <a href='". esc_url($tag_link). "' title='". esc_attr( $tag->name )." Tag' class='".esc_attr( $tag->slug )."'>";
            $html .= "#". esc_attr( $tag->name )."</a>";
        }
        $html .= '</div>';
        return $html;
    
    }

    Edit to this:

    /**
     * Return HTMl of all tags with appropiate link
     * @since 1.0.0
     */
    function codeless_all_tags_html(){
        $tags = get_tags(array(
        'orderby' => 'count',
        'order'   => 'DESC',
        'number'  => 25,
      ));
       
        $html = '<div class="post_tags">';
        foreach ( $tags as $tag ) {
            $count++;  
            $tag_link = get_tag_link( $tag->term_id );
                  
            $html .= " <a href='". esc_url($tag_link). "' title='". esc_attr( $tag->name )." Tag' class='".esc_attr( $tag->slug )."'>";
            $html .= "#". esc_attr( $tag->name )."</a>";
        }
        $html .= '</div>';
        return $html;
    
    }

    The 'number' => 25, is the number of tags to show. Change this value to your wish.

    Best regards!

    8 years, 2 months ago Mirela
    Participant
    in reply to: Folie – Architecture Template

    Hello,

    Try editing the new css to this:

    body.page-template-default.page.page-id-517 { 
    background-image: url(https://dev.fergusonarchitects.co.za/wp-content/uploads/2018/04/estate_new-1.jpg) !important;
     }

    It will overwrite the old css.

    Best regards!

    8 years, 2 months ago Mirela
    Participant
    in reply to: Center the button

    Hello,

    I just checked the page and the portfolio element several times and i never got the frozen screen. See a screen recording of it:
    https://drive.google.com/file/d/1jm-aaV5ptYFggpwv5JkKmJ_c9NDtAyA1/view
    What browser are you using? Do you have any add-on installed in it? Let us know so we can understand better.

    Best regards!

    8 years, 2 months ago Mirela
    Participant
    in reply to: Weird Issue: May We Suggest Hashtags Showing Up

    Hello,

    Can you please send us some valid wp credentials in a private reply? So we can check this out.

    Thanks!

Viewing 15 posts - 3,451 through 3,465 (of 12,542 total)
← 1 2 3 … 230 231 232 … 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