Forum Replies Created

Viewing 15 posts - 5,491 through 5,505 (of 8,657 total)
  • Author
    Posts
  • in reply to: woocommerce products display only 1 column #52517
    wensolutions
    Keymaster

    Hello @fatim,

    Glad that you figured out the issue by yourself .

    If you have any issue further please let us know .

    Best Regards!!

    in reply to: How to display the category title in carosel? #52516
    wensolutions
    Keymaster

    Hello @sujan,

    The feature to change the text clean commerce by wen themes in only available in pro version . With pro version you will be able to edit the entire footer section .

    http://themepalace.com/instructions/themes/clean-commerce-pro/#doc-how-to-manage-footer-options-14

    Also to change the texts require a code customization and you have to activate the child theme which is bit time consuming so will provide this customization only for the pro version of this theme .

    Hope you understand.

    Best Regards!!

    Have a good day .

    in reply to: Main Slider #52514
    wensolutions
    Keymaster

    Hello @akamber ,

    When we viewed your site on laptop we are unable to find space in slider section.

    Screen shot :

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

    But you can still manage the width of slider as per your screen by increasing the px of the width in above given CSS.

    Hope this helps .

    Best Regards!!

    in reply to: Posts – Releated Posts #52507
    wensolutions
    Keymaster

    Hello @bobperritt,

    First of all thank you very much for letting us know about the issue . We will certainly fix the issue in the next update of the theme .

    For the quick fix you have to activate the 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 create the folder inc. Then create the file related-posts.php inside the folder inc and paste below given code .

    https://gist.github.com/anonymous/8068ccfc78c480f2d56d1f96c860a4c5

    Hope this helps.

    Best Regards!!

    in reply to: Main Slider #52504
    wensolutions
    Keymaster

    Hello @akamber ,

    You are having such issue in mobile due to the addition of the custom CSS given below that you have added in your theme file .

    div#main-slider {
        height: 550px !important;
        width: 1420px !important;
    }

    So please remove the above given CSS. If you want to add the CSS for the desktop view you have to add the media query so that it will effect the desktop view only . After removing the above given CSS please use below given CSS. For this go to Admin panel > Appearance > Customize > Additional CSS and paste below given CSS.

    @media only screen and (min-width:1024px){
    div#main-slider {
    	height: 550px !important;
        width: 1420px !important;
    }
    }

    Hope this helps .

    Best Regards!!

    in reply to: Featured content entry header is not showing #52503
    wensolutions
    Keymaster

    Hello @akamber,

    The header of the pages that you have selected to display in feature content area is showing up as you can in the screen shot below :

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

    If this is not what you meant please explain your query further with the proper screen shot marking the area .

    Thank you .

    Best Regards!!

    Have a good day .

    in reply to: menu highlight/button color #52500
    wensolutions
    Keymaster

    Hello @jagdomains,

    Glad we could help you !!

    If you have any issues further, please feel free to post your queries and we will happily help you further.

    We will really appreciate if you could help us too by rating our theme in WordPress repo here:-

    https://wordpress.org/support/theme/graduate/reviews/

    Best regards !!

    in reply to: woocommerce products display only 1 column #52442
    wensolutions
    Keymaster

    Hello @fatim,

    If you have even directly modified the original file , all of your modification will be lost with the updates of the theme . So it is all use less to make the modification directly in your original file .

    In this context our suggestion to you is download the fresh copy of the theme and make all of your modification through the child theme . In this way you wont lost your change with the update and your original theme file will not be affected .

    Also the only option remaining here is to revert back which is only possible with the fresh installation of the theme .

    Hope this clears up the confusion .

    Best Regards!!

    Have a good day .

    in reply to: request the formal receipt #52441
    wensolutions
    Keymaster

    Hello @ymba,

    Please send the email requesting for formal receipt in the email address given below :

    info@themepalace.com

    Thank you !!

    Best Regards!!

    in reply to: menu highlight/button color #52439
    wensolutions
    Keymaster

    Hello @jagdomains,

    To change the color of the highlighted menu text color and button in FAQ page use below given CSS .

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

    .main-navigation .current-menu-item > a{
    color: #68c9e8;
    }
    
    .wpcf7 input[type="submit"] {
        background-color: #68c9e8;
        }

    Also to change the background color of the widget use below given CSS.

    #secondary .widget_categories, #secondary .widget_archive, #secondary .widget_tag_cloud, #secondary .textwidget {
        background-color: #dddddd;
    }

    You can adjust the color code according to your requirement .

    Hope this helps .

    Best Regards!!

    Have a good day .

    in reply to: woocommerce products display only 1 column #52386
    wensolutions
    Keymaster

    Hello @fatim ,

    It seem like you have directly modified your theme original file. Please let us know whether you have directly modified your theme file or not ?

    For your information you should not make any direct modification to your original file . you should always go through child theme approach for any modification so that you wont lost and modifications .

    Best Regards!!

    in reply to: no header picture #52384
    wensolutions
    Keymaster

    Hello @mrypoc,

    The custom header image will only appear in the other pages but not in the front page . It will not display in the page that you have assigned to display the front page by going to Admin panel > Appearance > Customize > Static Front Page .

    Hope this clears up the confusion .

    Best Regards!!

    in reply to: woocommerce products display only 1 column #52378
    wensolutions
    Keymaster

    Hello @fatim,

    When inspected your site we found that that the styling for the woo commerce is completely distorted .

    So please try deactivating any third party plugin that is used with the theme as the distortion may have cause due to incompatibility with the third party plugin . Also when theme is checked locally it is working absolutely fine .

    Hope this suggestion works .

    Best Regards!!

    in reply to: Homepage About us #52375
    wensolutions
    Keymaster

    Hello @vibrantdigital,

    To display the full text from the page in about section you have to activate the child theme .

    Child theme references :

    https://codex.wordpress.org/Child_Themes

    You can also activate the child theme using the plugin given below:
    https://wordpress.org/plugins/wp-child-theme-generator/

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

    https://gist.github.com/anonymous/7681e58c8ecea014edd47bde30fca4aa

    Hope this helps .

    Best Regards!!

    Have a good day .

    in reply to: menu highlight/button color #52372
    wensolutions
    Keymaster

    Hello @jagdomains,

    When we inspected your site URL we found that the currently activated theme in your site is not graduate .

    So please contact with the respective theme support forum to help you .

    Thank you very much .

    Best Regards!!

Viewing 15 posts - 5,491 through 5,505 (of 8,657 total)