Forum Replies Created

Viewing 15 posts - 5,551 through 5,565 (of 8,657 total)
  • Author
    Posts
  • in reply to: center featured trips #51938
    wensolutions
    Keymaster

    Hello @mrypoc,

    To make the front page sections full width ( center ) please go to your Page edit screen in of the page you have chosen to display as the front page and set the Layout Settings under Theme Settings Metabox to “No-sidebar” layout.

    Reference screenshot : http://imgur.com/a/1BoUY

    Hope this Helps,

    Best Regards !!

    in reply to: header size and welcome widget #51936
    wensolutions
    Keymaster

    Hello @gudkashah,

    Glad to know your issues has been resolved. 🙂

    If you have any queries further, please let us know your queries and we will happily help you further.

    Best Regards !!

    in reply to: Customize your size doesn't show menu #51935
    wensolutions
    Keymaster

    Hello @mint,

    We are actually having trouble understanding the issue correctly.

    Are you having issues with the Woocommerce latest update ?

    Furthermore, while we have tested the woocommerce plugin with the theme latest version, no such issues were seen on our side.

    To debug further, Please check for any third party plugin conflicts ( if you have installed any ) except woocommerce and check by deactivating them one by one and see if it resolves the issue.

    You can also try enabling WP_DEBUG mode ( instructions link : https://codex.wordpress.org/Debugging_in_WordPress ) to check and see if there are any error / warnings shown.

    Also, please send us screenshot and Website URL explaining the issue further so that we can look into it further.

    Best Regards !!

    in reply to: Mobile Version #51860
    wensolutions
    Keymaster

    Hello @jennymess99,

    To get the site logo and top bar to show up on the mobile version,without having to press the burger menu, please paste the following custom CSS in your Admin Dashboard > Appearance > Customize > Additional CSS :

    @media screen and (max-width: 992px) {
        #masthead {
            display: block;
        }
        .main-navigation,
        .topbar-toggle {
            display: none;
        }
        .site-branding.align-left .site-logo,
        .site-branding.align-left #site-header,
        .site-branding.align-right #site-header {
            float: none;
            display: inline-block;
            vertical-align: middle;
        }
        .site-branding {
            float: none;
            text-align: center;
        }
        #top-bar .topbar-dropdown {
            position: relative;
            right: 0;
            top: 0;
            background-color: #F7FCFE ;
        }
        #top-bar {
            padding: 0;
        }
        #top-bar .address-block li,
        #top-bar .address-block li a,
        #top-bar .login-signup a,
        #top-bar .login-signup li:last-child:before,
        #top-bar .address-block .fa {
            color: #777;
        }
    }

    This will display the site logo in mobile version without having to trigger through with hamburger menu.

    Hope this Helps,

    Best Regards !!

    in reply to: header size and welcome widget #51830
    wensolutions
    Keymaster

    Hello @gudkashah,

    Please add in the following custom CSS to change the title font size of the Welcome Widget.

    .wen_corporate_welcome_widget .widget-title {
        font-size: 25px!important;
    }

    You can adjust the font size value as per your requirements.

    Hope this Helps,

    Best Regards !!

    in reply to: Nothing works, help please #51828
    wensolutions
    Keymaster

    Hello @marcelozada,

    While we have checked your Website URL, the front page sections seems to be workings as per theme layout.

    Please check and verify the issue on your side. If the issue still exists, please explain the issue further with some possible screenshots so that we can provide some precise fix.

    Best Regards !!

    in reply to: WPML Compatibility #51725
    wensolutions
    Keymaster

    Hello @liberaldusunce,

    While we have tested the front page section with the WPML plugin the translated pages chosen for each individual sections seems to be working correctly. We also tested with the story section with similar results.

    While using the multilingual CMS plugins like WPML, it is important to set the customizer values ( page / posts ) accordingly in both languages for the appropriate content to show with language.

    Please make sure that you have set the customizer section with pages individually after translating and updating the translation for a page.

    After translating a page and saving contents, go to your language specific Admin Dashboard > Appearance > Customize and set your front page with the translated pages. save and publish your changes and language specific contents will be visible for your languages.

    Hope this Helps,

    Best Regards !!

    in reply to: Nothing works, help please #51702
    wensolutions
    Keymaster

    Hello @marcelozada,

    If you are having trouble setting up the website with Online News Pro theme, please check the theme official documentation that gives the step by step guide / instructions with screenshots to setup the theme as in the demo here :

    http://themepalace.com/instructions/themes/online-news-pro/

    You can also post in your website URL that you are currently setup so and specify the sections that you are having trouble setting up so that we can inspect your website further and help you precisely.

    Best Regards !!

    in reply to: WPML Compatibility #51700
    wensolutions
    Keymaster

    Hello @liberaldusunce,

    The Biography Pro theme is translation redy and can be translated to your desired anguade in your website.

    Regarding the compatibility with multilingual plugins like WPML, while it can be used with the multilingual plugins, the theme does not declare compatibility with the plugin.

    As the sections in the home page comes from the customizer settings you should be able to setup front pages by adding translation to the selected pages for different sections for different languages.

    You can refer to the official WPML Documentation for further info on translation.

    Regarding the License :
    The Licence key is used to deliver future theme updates for your site. An active licence is required for getting any updates to your theme. After licence expiration, even though you can use your theme without any issues, no new updates will be available.

    If you have any queries, please feel free to post them.

    Best Regards !!

    in reply to: fa icons doesn't work #51699
    wensolutions
    Keymaster

    Hello @liberaldusunce,

    Glad to know your issues has been resolved.

    If you have any queries further, please feel free to post them here.

    We would also really appreciate if you could take some extra efforts to rate our free theme in at the WordPress repository here :

    https://wordpress.org/support/theme/biography/reviews/#new-post

    Best Regards !!

    in reply to: Photo Gallery Not Full Width #51625
    wensolutions
    Keymaster

    Hello @dreamframer,

    The content width can be changed by setting the global value. However if you are directly changing the code in the theme files, the changes will be lost upon theme update.

    Our suggestion is to take Child theme Approach for the task.

    Child theme references :

    https://codex.wordpress.org/Child_Themes

    You can also create the child theme using the plugin given below.

    https://wordpress.org/plugins/wp-child-theme-generator/

    After creating the child theme add in the following code in your child theme’s functions.php file :

    /**
     * [photo_perfect_child_custom_content_width change global content width]
     * @return [int] [content width value]
     */
    function photo_perfect_child_custom_content_width() {
    
    	return 1920; 
    }
    
    add_filter('photo_perfect_content_width', 'photo_perfect_child_custom_content_width' );

    Hope this helps.

    Best Regards!!

    in reply to: Google map doesn't display on Events Calendar pages #51618
    wensolutions
    Keymaster

    Hello @tadltech,

    Glad to know your issue has been resolved.

    If you have any theme related queries / issues further, please post your queries here and we will happily help you further.

    We would also appreciate if you could take some extra efforts to help us further by reviewing our free theme in WordPress repository at https://wordpress.org/support/theme/academic/reviews/#new-post

    Best Regards !!

    in reply to: Sidebar on pages but not on Front page #51573
    wensolutions
    Keymaster

    Hello @ryu,

    Actually Home page edit screen means Home page edit page where you will be able to edit the content of the home page.
    To go home Page edit screen go to Admin Panel > Pages > All Pages > Home page (main page ) that you have chosen to display as the front page .

    https://image.prntscr.com/image/FwKHFXvlT1Kj57a5X_OAvg.png

    At the button of the page you will find the meta field to manage the setting to disable the sidebar.

    Hope this clears up the confusion .

    Best regards!!

    in reply to: Sidebar on pages but not on Front page #51564
    wensolutions
    Keymaster

    Hello @ryu,

    To disable the slider only you can go to Home Page edit screen . Here you will see the meta field Theme Settings . Under Theme Setting option go to layout section > single layout and chose the option No side bar from the drop down .

    For more clear information refer to below screen shot :

    https://image.prntscr.com/image/QwL7vGogRgiq0WZILpSY-Q.png

    Hope this helps .

    Best Regards!!

    in reply to: Photo Gallery Not Full Width #51562
    wensolutions
    Keymaster

    Hello @dreamframer,

    When inspected your site URL we found that you have used Jet-pack gallery. As the theme does not recommend Jet-pack plugin the issue might have caused due to the conflict with the plugin .

    So please use the default WordPress gallery and for your information the default gallery is working absolutely fine .

    Hope this helps .

    Best Regards!!

Viewing 15 posts - 5,551 through 5,565 (of 8,657 total)