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

  • 10 years, 6 months ago Mirela
    Participant
    in reply to: error on woocommerce search

    Hello,

    I added an empty text widget beside the search widget and now the texts are displaying. However search is still not entirely functional. Please disable all third party plugins, clear cache and try again. One of them may be interfering with WooCommerce scripts.
    Let us know.

    Best regards!

    10 years, 6 months ago Mirela
    Participant
    in reply to: woocommerce products row

    Hello,

    You have not set a sale price to your products (screenshot). That is why they are displaying fine in “Recent Products”, but not in “Sale Products”.

    Best regards!

    10 years, 6 months ago Mirela
    Participant
    in reply to: menu navigation

    Hello,

    For some reasons, some hosts do not save the default menu. Your host too does not save the main meu when assigned from Appearances > Menus. In this case, you have to manually add it. That is why i edited file header.php.
    I replaced this line:
    $args = array("theme_location" => "main", "container" => false, "fallback_cb" => 'codeless_default_menu');
    With this:
    $args = array("theme_location" => "main", "container" => false, "fallback_cb" => 'codeless_default_menu', "menu"=> "Menu 1");
    It is set now in destop mode, but for the responsive mode you should make this edit in file includes/view/menu-small.php
    Find this line:

    if($cl_redata['header_style'] != 'header_11'):
      $args = array("theme_location" => "main", "menu_id" => 'mobile-menu', "container" => false, 'walker'  => new custom_walker_menu_small());      
    wp_nav_menu($args); 
    else:
      $args = array("theme_location" => "left", "menu_id" => 'mobile-menu', "container" => false, 'walker'  => new custom_walker_menu_small()); 
      wp_nav_menu($args); 
      $args = array("theme_location" => "right", "menu_id" => 'mobile-menu', "container" => false,  'walker'  => new custom_walker_menu_small()); 
      wp_nav_menu($args);  
    endif;

    replace with this:

    if($cl_redata['header_style'] != 'header_11'):
      $args = array("theme_location" => "main", "menu_id" => 'mobile-menu', "container" => false, 'walker'  => new custom_walker_menu_small(), "menu"=> "Menu 1");      wp_nav_menu($args); 
    else:
      $args = array("theme_location" => "left", "menu_id" => 'mobile-menu', "container" => false, 'walker'  => new custom_walker_menu_small(), "menu"=> "Menu 1"); 
      wp_nav_menu($args); 
      $args = array("theme_location" => "right", "menu_id" => 'mobile-menu', "container" => false,  'walker'  => new custom_walker_menu_small(), "menu"=> "Menu 1"); 
      wp_nav_menu($args);  
    endif; 

    Note: “Menu 1” is the name of the menu you have created. In case you want to use another menu, just replace “Menu 1” with the name of you new menu.

    Best regards!

    10 years, 6 months ago Mirela
    Participant
    in reply to: Problems for menu navigation

    Hello,

    The last reply you send is a private reply. This is visible only to you and support admins. Send us your admin username and password for the wordpress dashboard in a private reply. (Check the “Set as private reply” box below before sending the reply). So we can make you an example on your site.

    Best regards!

    10 years, 6 months ago Mirela
    Participant
    in reply to: ListItem icon on mac

    Hello,

    Can you please send the link where are these missing icons? I don’t see any issue with icons in your home page, nor in the Contact us.
    If you send us your wp credentials in a private reply, we can check this up.
    Let us know.

    Best regards!

    10 years, 6 months ago Mirela
    Participant
    in reply to: Service Media link issue

    Hello,

    Please go to file \vc_templates\services_media.php, and find these lines:

    if($style == 'style_1'){
       $output .= '<h5><a href="'.esc_url($link).'">'.esc_html($title).'</a></h5>';
       $output .= '<p>'.do_shortcode($content).'</p>';
    }

    Replace with these:

    if($style == 'style_1'){
       $output .= '<h5>'.esc_html($title).'</h5>';
       $output .= '<p>'.do_shortcode($content).'</p>';
    }

    Save file.

    Best regards!

    10 years, 6 months ago Mirela
    Participant
    in reply to: H1 Title on page Header overlapping breadcrumbs

    Hello,

    It’s ok now. You had an error in your custom css box. (an additional bracket). I edited that and changed a bit the code above. Please check your site.

    Best regards!

    10 years, 6 months ago Mirela
    Participant
    in reply to: background image jump

    Hello,

    I opened your site from a 1579px wide screen, but i did not get a jump. Screenshot.

    Best regards!

    10 years, 6 months ago Mirela
    Participant
    in reply to: Delete text "steadysets-icon-checkmark"

    Hello,

    You have an old version of theme and Visual Composer. Please update theme and VC to their latest versions first. The “steadysets-icon-checkmark” will not be displayed then.
    To make list titles font bigger, please go to Typography Options > Heading 6 Font style, change the font size here.

    Best regards!

    10 years, 6 months ago Mirela
    Participant
    in reply to: Service Icon

    Hello,

    Thank you for the kind words!
    To remove the on hover effect, please add this code into your custom css box:

    .services_medium.style_3:hover .icon_wrapper { background: #FFFFFF !important;}
    .services_medium.style_3:hover .icon_wrapper i { color: #E53D33 !important;}

    Best regards!

    10 years, 6 months ago Mirela
    Participant
    in reply to: Dummy data import doesn’t import images, sliders and top menu

    Hello,

    If your dummy data import was not completed to 100%, then you do not have enough memory limit or execution time limit. You can ask your host to increase these two for you.
    If the data import is not complete, this can lead to not have all pages and posts imported. But the images however are not included. You have to import your own images. The same goes with Layer slider and Revolution slider. Install plugins and then import the demo sliders you have included in the ‘sliders’ folder inside the main folder you downloaded from Themeforest.
    The only sliders that come with the dummy data import, are those of Codeless slider.
    Let us know if you need further help.

    Best regards!

    10 years, 6 months ago Mirela
    Participant
    in reply to: How to remove a white gap underneath call to action on home page
    This reply has been marked as private.
    10 years, 6 months ago Mirela
    Participant
    in reply to: Importing Business Clean Demo

    Hello,

    Sorry for the late reply.
    I finished importing business 4 demo data and i made the first important configurations. Please continue with further customization.
    Let us know if you need help.
    PS: i could not import the new theme version. Please increase execution time limit and memory. You can ask your host to do it for you.

    Best regards!

    • This reply was modified 10 years, 6 months ago by Mirela.
    10 years, 6 months ago Mirela
    Participant
    in reply to: Parse Error in Woocommerce Shop Page Product Title
    This reply has been marked as private.
    10 years, 6 months ago Mirela
    Participant
    in reply to: FAQ problem

    Hello,

    Sorry for the late reply.
    You have to go to the ‘text’ tab of your faq text editor (screenshot) and format text with html tags there. I have set an example in your faq question ‘1’ .

    Best regards!

Viewing 15 posts - 10,486 through 10,500 (of 12,542 total)
← 1 2 3 … 699 700 701 … 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