Forum Replies Created

Viewing 20 posts - 21 through 40 (of 117 total)
  • Author
    Posts
  • in reply to: Wen Business Pro Child theme error #122047
    wensolutions
    Participant

    Glad that it worked!!

    Let us know if you need any further assistance.

    Good luck with your site.

    in reply to: Wen Business Pro Child theme error #122030
    wensolutions
    Participant

    Hello june,

    While we have created and tested the child theme for WEN Business Pro, the child theme seems to be working fine with all the customizer settings from the parent theme.

    To help you with the issue further, we have created the working child theme zip package in the link here :
    https://we.tl/xzAvZNEz06

    You can download and use the child theme to resolve the issue. Please install the child theme and check if the issue is resolved.

    Hope this Helps,

    Best Regards !!

    in reply to: Wen Business Pro Child theme error #121993
    wensolutions
    Participant

    Hello @june,

    While we have inspected the code you have provided for the child theme, the code seems to be working correctly on our side.

    However, the issue seems to be with the use of quotes in the code snippet. We have fixed the issue in our test unit.

    Please try replacing the code snipped with the one below :

    <?php
    function wen_business_pro_child_theme_enqueue_styles() {
    
    $parent_style = 'wen-business-style'; // This is 'wen-business-style' for the WEN Business Pro Theme.
    
    wp_enqueue_style( $parent_style, get_template_directory_uri() . '/style.css' );
    wp_enqueue_style( 'child-style',
    get_stylesheet_directory_uri() . '/style.css',
    array( $parent_style ),
    wp_get_theme()->get('Version')
    );
    }
    add_action( 'wp_enqueue_scripts', 'wen_business_pro_child_theme_enqueue_styles' );

    This should work for the child theme’s functions.php file to load the parent functions and styles correctly.

    If the issue is not resolved, please explain the “missing functions” that you are referring to further so that we can check the issue and provide some precise fix.

    It would also help us visualize the issue further if you could provide us your Website URL explaining the issues.

    Hope this Helps,

    Best Regards !!

    in reply to: Position search function icon to right #121956
    wensolutions
    Participant

    Hello @jennifer,

    To make the search field longer and shift the Search / social icons to right,you can add the following Custom CSS in your Admin Dashboard > Appearance > Customize > Additional CSS :

    @media(min-width:1025px){
    
    #header-search-form {
        min-width: 200px;
    }
    
    .header-top {
        float: right;
    }
    
    }

    Hope this Helps,

    Best Regards !!

    in reply to: Remove or change the word 'Category:' in post archive #121955
    wensolutions
    Participant

    Hello @jenifer,

    If you wish to remove the word “Category” from your category Archive, you will need to add a block of code for the quick customization. This can be done with the help of child theme.

    To learn more about child themes, check the link here : https://codex.wordpress.org/Child_Themes

    You can also automate the child theme creation with the help of Child theme generator plugins.

    After Creating and activating the child theme, please paste in the following code in your child theme’s functions.php file :

    add_filter( 'get_the_archive_title', 'wen_business_pro_child_archive_titles' );
    
    function wen_business_pro_child_archive_titles($title) {
    
        if ( is_category() ) {
    
                $title = single_cat_title( '', false );
    
            } elseif ( is_tag() ) {
    
                $title = single_tag_title( '', false );
    
            } elseif ( is_author() ) {
    
                $title = '<span class="vcard">' . get_the_author() . '</span>' ;
    
            }
    
        return $title;
    
    }

    This will remove the title texts in the archive pages.

    Hope this Helps,

    Best Regards !!

    in reply to: Wen Business Pro Child theme error #121836
    wensolutions
    Participant

    Hello June,

    We’d suggest you to try out WP Child Theme Generator to create a child theme of WEN Business Pro. We hope this shouldn’t be an issue.

    Let us know if you need any further assistance.

    Thanks

    in reply to: No theme content for Wen Business Pro #121387
    wensolutions
    Participant

    Hello @maxcavalli-nl,

    To setup the front page of your website like in the theme demo with the WEN Business Pro theme, you will firstly need to create and set a static front page in your Admin Dashboard > Appearance > Customize > Static Front Page > Front page displays option.

    The front page sections in the theme are displayed with widgets available in the theme. After setting a static front page, go to your Admin Dashboard > Appearance > Customize > Widgets > Front Page Widget Area and choose the widgets you like to display in your front page. Each widget can be setup accordingly with your desired content. Save and publish your changes to see the changes in live site front page.

    You can also follow the official theme documentation for the theme for step by step instructions with screenshots to setup theme as in the demo at :
    https://themepalace.com/instructions/themes/wen-business-pro/

    Also, if you are still having trouble with theme setup, please write back to us for any further queries / issues specifying the sections you are having trouble to setup with your Website URL.

    Hope this Helps,

    Best Regards !!

    in reply to: WooCommerce Image too big! #119571
    wensolutions
    Participant

    Hi,

    We are glad that you figured it out and resolve the issue! Let us know if you’ve any more questions.

    Thanks

    in reply to: WooCommerce Image too big! #119486
    wensolutions
    Participant

    Hi Ana,

    Did you resolve an issue? As we inspect the given URL we found no hints of huge image http://prntscr.com/fz58h8 If this is still an issue, can you please elaborate it further so as how it should be?

    in reply to: Front page widgets horizontal alignment #119059
    wensolutions
    Participant

    Hello,

    The front page of the demo is set up using Business Latest News widget which comes inbuilt with the theme. To set up the section with three column as in the demo you have to place the widget Business Latest News in Front page Widget area. You can manage the number of column and number of post to display from the widget itself.

    Business Featured Page widget has the option to show only one page which is theme feature. To modify the option of the widget requires higher code customization which is beyond the support we offer for our product.

    But if you still want such feature then our suggestion to you is to hire a professional developer for your customization, so that your theme will not be affected in any way.

    To hire a developer please follow the link below
    https://catchthemes.com/hire-customizer/

    Best Regards.

    in reply to: Mobile menu Wen Business Pro #118302
    wensolutions
    Participant

    You are welcome! Glad that you implemented and approved the solution.

    Have a nice day!

    in reply to: Mobile menu Wen Business Pro #118300
    wensolutions
    Participant

    Hello Dirk,

    Thank you for contacting Catch Themes support.

    You can do the workaround for this issue by changing the color for the area i.e area for accessing the submenu and parent menu item. For this go to Admin Panel > Appearance > Customize > Additional CSS and paste below given CSS.

    .mm-menu .mm-list>li:after { 
        z-index: 99999;
    }
    .mm-list a.mm-subopen {
        background: #1f9fcc!important; 
    }

    Let us know if you have any further concerns.

    in reply to: Menu not displaying sub-pages #113222
    wensolutions
    Participant

    Hello,

    We have inspected your site and we do not find the sub-item for the menu. So please make sure you have added the sub item for the menu in the from the dashboard by drag and drop.

    Please refer to this link for detail: https://codex.wordpress.org/Appearance_Menus_Screen.

    Let us know for any further confusion.

    wensolutions
    Participant

    Hello,

    At the moment, we do not have specific plugin to suggest you for slide shows which is compatible with our theme.

    Anyway you can try searching similar plugin through this link https://wordpress.org/plugins/search.php?q=slideshow

    Hope this would help you.

    Regards,
    wensolutions

    wensolutions
    Participant

    Hi,

    It seems like there is some javascript conflict in between those functionalities that stopped from working.

    Therefore at the moment, we would like to suggest you to disable the plugins and see if theme ( slider and menu ) standalone works well or not. If one of the plugin is causing this issue we recommend you to find an alternative of it.

    If still the problem persists with plugin deactivation, please let us know so that we could try suggesting you for other possible solutions.

    Regards,
    wensolutions

    in reply to: I want my website as your demo for wen business pro #109536
    wensolutions
    Participant

    @drenver,

    Apology for late response. You can personalize the blog layout from Appearance -> Customize -> Layout Options -> Image in Archive section from the dashboard.

    Hope this resolves your question.

    Let us know if you need any further assistance.

    wensolutions
    Participant

    Hello @jennifersimsdesign-com-au,

    To change the border color of the widgets and the border lines in between the links, please add the following custom CSS in your Admin Dashboard > Appearance > Customize > Additional CSS :

    .sidebar .widget {
        
        border: 1px solid #000;
    
    }
    
    .sidebar ul li {
        border-top: 1px solid #000;
    
    }

    The CSS will change the color of the widget border and the link border respectively.

    You can replace the “#000” color code with the color code of your choice. For reference on color hex code please see the link here : http://www.w3schools.com/colors/colors_picker.asp

    Hope this Helps,

    Best Regards !!

    in reply to: Social Media Icons and Search Bar #104614
    wensolutions
    Participant

    Hello @ana,

    We will provide you a step by step guide to achieve your feature request.

    First, you will have to create a child theme for the theme you are currently using. To know more about the child theme please visit, http://catchthemes.com/blog/create-child-theme-WordPress/

    Now that you have created a child theme so add the below given code on your child theme’s functions.php file

    function wen_business_pro_modify_top_header(){ 
    
    	remove_action( 'wen_business_action_before_header', 'wen_business_header_top_content', 5 ); 
    	add_action( 'wen_business_action_after', 'wen_business_header_top_content', 5 ); 
    }
     
    add_action('init', 'wen_business_pro_modify_top_header' );

    Finally, save the file and reload your browser.

    Hope it helps.
    Regards.

    in reply to: HTTP 500 #103213
    wensolutions
    Participant

    Hello @Ana, normally the theme ‘wen-business-pro’ should be located inside ‘wp-content/theme/’ folder. But as you mention the theme isn’t listed there means it could have been probably deleted due to some reasons.

    So, try re-uploading the fresh copy and see if this works.

    Note: We advise you to create a Child Theme (or you this wp child theme generator ) for any custom changes we want to do on default parent theme properties rather than editing the parent theme’s files directly.

    in reply to: Logo/Menu Alignment #103201
    wensolutions
    Participant

    Ok, try to reduce the logo size and upload the logo. See if this works with proper menu alignment. The bigger logo could be probably pushing the menus from actual position.

Viewing 20 posts - 21 through 40 (of 117 total)