Viewing 11 posts - 1 through 11 (of 11 total)
  • Author
    Posts
  • #406349

    Hi,

    I was trying to create a customized side bar for my blog page, where I can also get a thumbnail image of the blog page. I added the enfold combo widget in the sidebar blog section which worked, but there are certain blogs which I don’t want to chow, which I have categorized in the post page. How do I exclude them and also how do I increase the size of the thumbnail image.I also need to remove the rest of the content in the sidebar, since if you observe the link, there are 2 recent post segments. Added the link in the private content section. Also i need to remove popular and comments which is show on top right side of the page only i want to show recent post. Please let me know how can i do.

    Thank you.

    #406397

    Hey potentialindia!

    Thank you for coming back.

    To increase the size of the thumbnals:

    
    .avia_combo_widget .news-thumb {
        height: 50px !important;
        width: 50px !important;
    }
    
    .avia_combo_widget .news-thumb img {
        height: 50px !important;
        width: 50px !important;
    }
    

    To remove the tabs:

    
    .avia_combo_widget .tab.widget_tab_comments,
    .avia_combo_widget .tab.widget_tab_recent {
        display: none !important;
    }
    
    

    To exclude posts with a special category you have to find the ID’s of the categories to exclude and modify the following core file:
    enfold\framework\php\class-framework-widgets.php look for (line 935):

    
    avia_get_post_list('cat=&orderby=comment_count&posts_per_page='.$posts);
    

    and replace with:

    
    avia_get_post_list('cat=-15,-10&orderby=comment_count&posts_per_page='.$posts);
    

    Replace the numbers with your category ID’s.

    Hope this will help you.

    Best regards,
    Günter

    #410021

    Hi
    I need two combo widgets on the side bar of blog page one showing recent post and other showing related post. I don’t have an option to customise my post when i add combo widgets in the appearance -> widgets. Please let me know how can i do .

    Thank you.

    #410503

    Hi,
    To exclude posts with a special category I am unable to find ID’s of the categories and the core file ( enfold\framework\php\class-framework-widgets.php) to modify . Please let me know how can I find the category ID and the core file.

    Thank you.

    #410646

    Hey!

    1) Put 2 combo widgets in the side bar for blog. Each widget has a unique ID, so we can help you to with the CSS to hide the tabs you do not need.

    2) The file is in your WP folder -> wp-content -> themes -> Enfold ……..

    To see the ID’s of categories in the backend you can usa a plugin like:

    https://wordpress.org/plugins/wp-show-ids/

    Come back, when you are ready and need our help again.

    Best regards,
    Günter

    #411033

    Hi ,
    I am not technically sound , please guide me through the process of modifying the core file. As mentioned in previous response ,kindly let me know where can I find WP folder. I would appreciate if you can attach screen shots for the steps.

    The plugin which you suggested for finding category ID it hasn’t been updated in over 2 years.The link of plugin :https://wordpress.org/plugins/wp-show-ids/. Also i would like to know does adding more plugin makes website slow?

    Please let me know.

    Thank you.

    #411436

    Hey!

    The combo widget cannot show related posts. You need to use another plugin for that. Maybe this will help: https://wordpress.org/plugins/pro-related-post-widget/screenshots/

    Regards,
    Ismael

    #412949

    Hi,
    I was trying to create a customized side bar for my blog page, where I can also get a thumbnail image of the blog page. I added the enfold latest news in the sidebar blog section which worked .how do I increase the size of the thumbnail image. Please let me know.

    Thank you.

    #413447

    Hey!

    You can add this to the Quick CSS field to increase the thumbnail container:

    .news-thumb, .news-thumb img {
      height: 50px;
      width: 50px;
    }

    Regards,
    Ismael

    #474204

    hi, I cant find
    enfold\framework\php\class-framework-widgets.

    Im looking in enfold, dashboard, editor -> enfold, there is a huge list of templates, among them funstions.php and avia_framework.php but I cant find enfold\framework\php\class-framework-widgets
    and in it the code avia_get_post_list(‘cat=&orderby=comment_count&posts_per_page=’.$posts);

    some help would be great

    #474636

    Hey!

    You have to edit that file in your cpanel or via FTP. :)

    Best regards,
    Ismael

Viewing 11 posts - 1 through 11 (of 11 total)
  • You must be logged in to reply to this topic.