Forum Replies Created

Viewing 15 posts - 5,206 through 5,220 (of 8,657 total)
  • Author
    Posts
  • in reply to: News and Events #56587
    wensolutions
    Keymaster

    Hello @pio-capobianco,

    You can display the News in 3 column through the use of custom CSS.

    For this go to Admin Panel > Appearance > Customize > Additional CSS and paste below given CSS.

    .recent-news {
        width: 100%;
    }
    
    .recent-events {
        display: none;
    }
    
    .news-post:nth-child(3n+1) {
        clear: both;
    }
    
    .news-post:nth-child(2n+1) {
        clear: none;
    }
    
    .news-post {
        width: 33% !important;
    }

    Regarding premium version, the option to make the news appear in 3 coluumn is not available within the theme . But you can still manage to display the news in 3 column using additional custom CSS.

    Besides this pro version comes with other exciting feature which you might want to consider .

    http://themepalace.com/downloads/education-hub-pro/

    Hope this helps .

    Best Regards!!

    in reply to: my apply coupon code part is cut on mobile #56585
    wensolutions
    Keymaster

    Hello @fatim,

    The CSS we have provided previously will reduce the font size for desktop and responsive view .

    So as there is no issue in desktop view we have provided the CSS that would work for responsive view only .

    Please replace above given CSS with the CSS given below .

    @media only screen and (max-width: 767px){
    .woocommerce input.button {
        font-size: 12px !important;
        padding: 12px 2px 9px !important;
    }
    }

    Hope this helps .

    Best Regards!!

    in reply to: Carousel for Products categories #56584
    wensolutions
    Keymaster

    Hello @fatim,

    Glad we could help you .

    Let us know if you have any issue further .

    Best Regards!!

    in reply to: my apply coupon code part is cut on mobile #56540
    wensolutions
    Keymaster

    Hello @fatim,

    When we checked the cart page locally it is displaying fine as you can see in below screen shot :

    https://image.prntscr.com/image/Ls3cx0mNSTuE6l–64dNng.png

    But if you are still having the issue then you can use below given CSS .

    .woocommerce input.button {
        font-size: 13px;
        padding: 12px 17px 12px;
    }

    This will reduce the font size.

    Hope this helps .

    Best Regards!!

    in reply to: Carousel for Products categories #56539
    wensolutions
    Keymaster

    Hello @fatim,

    Our sincere apology in delay in replying to you .

    To turn off the links from the slides in Featured Carousel section use below given custom CSS.

    #featured-carousel .featured-carousel-item {
        pointer-events:none;
    }

    Hope this helps.

    Best Regards!!

    in reply to: Clean Commerce mobile #56529
    wensolutions
    Keymaster

    Hello @lbiebs,

    When we checked your site we do not find any kind of issue as you have mentioned . Everything appears perfectly fine in mobile version as well .

    So please send us the screen shot of the issue that you find so that we would be clear on the issue .

    Hope you understand .

    Best Regards!!

    in reply to: Theme did not come with the Install Demo #56528
    wensolutions
    Keymaster

    Hello @ctenoriosailormen-com,

    The Demo file is not bundled within the theme.

    However we have a Theme official documentation that will guide you to set up your site as in the demo .

    http://themepalace.com/instructions/themes/edu-care-pro/

    Further more if you have any difficulty while setting up the site or have confusion we will guide you through each and every steps .

    Thank you !!

    Best Regards!!

    Have a good day .

    in reply to: Background color … #56526
    wensolutions
    Keymaster

    Hello @pcwitcher,

    Glad we could help you .

    If you have any issue further then please let us know .

    Best Regards!!

    in reply to: (BUG?) Header Image does not work with PolyLang #56457
    wensolutions
    Keymaster

    Hello @martinhighfiveit-nl,

    The Polylang plugin falls under third party plugin category as the theme does not recommend this plugin .

    However when we tested the plugin with the theme the plugin works fine .

    As for the issue you have mentioned , actually it is not the issue . Except for the default language you have to upload your required images again as default image will only work for default language .You need to create post type and upload image for each language as all of these will be language specific . It is not the issue for the plugin feature .

    When you upload the image in header image it displays fine in pages/ post for any language .

    Hope this clears up the confusion .

    Best Regards!!

    in reply to: Slider is not working? #56456
    wensolutions
    Keymaster

    Hello @wordtodo,

    When we tried to access your site to inspect the issue further we could not access as the access was denied so we could figured out the issue .

    For you information Construction base does not recommended WEN Logo slider . However when we checked the plugin with the theme it is working absolutely fine .

    To display the slider directly in the front page you can place the short code in the contain edit section of the page that you have chose to display the front page from Admin Panel > Appearance > Customize > Static Front Page .

    And to inspect the issue we require the access to your site so please provide the access .

    Best Regards!!

    in reply to: Changing slider caption #56453
    wensolutions
    Keymaster

    Hello @plasticsurgeon,

    As the theme currently does not have the option to control the caption length you can achieve this through the use of child theme .

    You can even activate the child theme using the plugin given below .

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

    After activating the child theme in your child theme functions.php file paste below given code .

    https://gist.github.com/anonymous/ddb5386ce5d3255fd23220e0bbfa3b2d

    This will display up to 10 word. In case if you want to display more or less then 10 word then you can change the no by yourself from the block of code given below :

    $slides[ $cnt ]['excerpt'] = mediclean_the_excerpt( apply_filters( 'mediclean_filter_slider_caption_length', 10 ), $post );

    This block of code is in four places altogether where you can change the no as per your requirement .

    Hope this helps .

    Best Regards!!

    in reply to: Background color … #56452
    wensolutions
    Keymaster

    Hello @pcwitcher,

    To make the background black every where use below given CSS.

    #main {
        background: none repeat scroll 0 0 #000000;
    }
    
    #panel-11-0-0-0> .panel-widget-style {
        background-color: #000 !important;
    }
    
    #pg-11-0> .panel-row-style {
        background-color: #000 !important;

    Hope this helps .

    Best Regards!!

    Have a good day .

    in reply to: Get two email addresses into the Header Bar #56451
    wensolutions
    Keymaster

    Hello @rady006 ,

    The theme does not have the option to display two email address in the header section .

    However you can still display two email address in header by using the available option in the theme .

    For this go to Admin Panel > Appearance > Customize > Theme Options > Header Options and enter your one of the email address in Contact Number Section .

    Screen shot:

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

    Then go to Admin Panel > Appearance > Customize > Additional CSS and paste below given CSS.

    #quick-contact li.quick-call::before {
        content: "\f0e0";
    }

    Hope this helps .

    Best Regards!!

    Have good day .

    in reply to: Construction Base Pro instruction are shit!!! #56450
    wensolutions
    Keymaster

    Hello @byron-javis ,

    The instruction/ guide line of the theme contains the basic instruction about the use of options available in the customizer setting . Similarly provide the guidance to set your site as in the demo .

    But if are having trouble/difficulty that is not solved through guideline then you can post your queries here in the support forum with the proper explanation of the issue and our support team will help you further .

    Our support team are here for you guys to help with your issue so if the instruction are not sufficient in the guidance then there is nothing to worry as you have the platform to post your query . Also we would like to assure that your each and ever query will be answered .

    Hoping for your co-operations.

    Best Regards!!

    Have a good day .

    wensolutions
    Keymaster

    Hello @rs1,

    To display the slider in the front page at first you need to set the Front Page Displays to A static page . Then set to different page for Home page and Blog page By going to Admin Panel > Appearance > Customize > Static Front Page .

    After setting the static front page go to Admin Panel > Appearance > Customize > featured Slider > Slider Type > Enable Slider on and chose the Options Static Front Page only . Now select the pages that you want to display in the slider.

    Also make sure you have upload the image in featured image section of individual page as the image in the slider comes from that section .

    Hope this helps .

    Best Regards!!

Viewing 15 posts - 5,206 through 5,220 (of 8,657 total)