WPHelpout
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [MesoColumn] How do i remove the Top Menu?`Hi,
You can add this to your theme’s CSS:
#top-navigation { display: none; }
Forum: Themes and Templates
In reply to: [Quintus] Leave a replyHi,
I wouldn’t advise that because you will be swarmed with spam. And having spam links on your site can have negative effects on your SEO.
If you want an easy and safe way for your users to connect, I suggest using the Disqus plugin.
https://www.ads-software.com/plugins/disqus-comment-system/That way the users can login using Facebook, Gmail and Twitter easily.
Having said that if you really need your comments to appear without any security go to WP > Settings > Discussions and set it so that anyone can post a comment.
Forum: Themes and Templates
In reply to: [Catch Kathmandu] Change slider imageThe recommended size in width is 1280px but the height can be anything you need it to be.
It seems that only the posts are accepted into the slider and not single images. If you want certain posts to be included into the slider but not visible on your site you can set the slider to be the Category Slider.
Then make a category called “Slider” for example and select it in the settings of the slider.
Then exclude that category from your WordPress loop perhaps with the help of this plugin: https://www.ads-software.com/plugins/wp-exclude-from-homepage/
Forum: Themes and Templates
In reply to: [Catch Kathmandu] Change slider imageHello,
You can go to Theme Options > Featured Slider > Feature Post Slider Options.
In there you can insert the ID of which post you want to be part of the slider. Then ensure that that post has a featured image set.To find the post ID consult this documentation:
https://www.ads-software.com/support/topic/where-can-find-the-post-id?replies=5Forum: Themes and Templates
In reply to: [BresponZive] Display home page like shown in demoYou most likely will need to open single.php and locate the code that is responsible for outputting the 2 column magazine layout and place it above the recent posts loop. That might be difficult if you are not familiar with looking at code so you can try to do it with CSS, but with CSS it may break your layout on mobile.
So in your theme’s Custom CSS often found in the Theme Options add this:
.home #tpcrn_magazine_doublethumb-widget-4 { top: -310px; position: absolute; left: 0px; width: 777px; } .home h2.blogpost-wrapper-title { margin-top: 690px; }
Forum: Plugins
In reply to: [WP UI - Tabs, Accordions, Sliders] Hide on page loadTo make all accordions panels to be collapsible, try Options page -> Effects -> Collapsible Accordions.
That should do the trick. ??