ivdimova
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Widgets Won't load on my homepageHave you done some changes in the theme? I just tested it on my site and it looks fine
Forum: Fixing WordPress
In reply to: Widgets Won't load on my homepageWhat template you are using for this page? I can see that some of the page templates of this theme don’t have sidebar
Forum: Fixing WordPress
In reply to: How to add custom counter after each sidebar widget?May be you can use the after_widget to add the counter?
Forum: Fixing WordPress
In reply to: Front end editing on one pageHi, I have tried one plugin that connect a Google documents to posts, you can share the document to your people and it will be published like a post/page when they enter the info. Hope that this is helping, here is the link https://www.ads-software.com/extend/plugins/docs-to-wordpress/. Of course you can just create them users to your site but I am not sure that this is what you want
Forum: Fixing WordPress
In reply to: page title removalYou can just comment
<?php the_title ()?>
in your page templateForum: Fixing WordPress
In reply to: How to make your widget text box coloured?Yes, of course the best option is to create a custom css for this, in child theme. If you can do this, it will be great
Forum: Fixing WordPress
In reply to: How to make your widget text box coloured?About the body you just have to add
<span style="background:white;">your text</span>
for example, but I think that the headings cant’t be modified with html so you will need to do additional work somewhere in your theme.Forum: Fixing WordPress
In reply to: How to make your widget text box coloured?You can use html in the widget so just set your color as background
Forum: Fixing WordPress
In reply to: How to display random posts from a given category?I am glad to help. About your question – I am good with PHP, but I don’t have time for extra work, just help here when I can. So good luck and all the best
Forum: Fixing WordPress
In reply to: How to display random posts from a given category?Try <?php the_excerpt();?>
Forum: Fixing WordPress
In reply to: How to display random posts from a given category?I can’t load it, explain me again what is the problem now?
Forum: Fixing WordPress
In reply to: How to display random posts from a given category?Oh, sorry it is `<?php query_posts(array(
‘showposts’ => 6,
‘orderby’ => ‘rand’,
‘category_name’ => ‘new’ //You can insert any category name
));
if (have_posts()) : ?><?php while (have_posts()) : the_post(); ?>
<h1><?php the_title(); ?></h1>
<?php endwhile; ?>
<?php endif; ?>` The half of the opening tag is missing in previous post, it is something caused of copy/paste, I am sorryForum: Fixing WordPress
In reply to: How to display random posts from a given category?Ok, so you have to use something like this `hp query_posts(array(
‘showposts’ => 6,
‘orderby’ => ‘rand’,
‘category_name’ => ‘new’ //You can insert any category name
));
if (have_posts()) : ?><?php while (have_posts()) : the_post(); ?>
<h1><?php the_title(); ?></h1>
<?php endwhile; ?>
<?php endif; ?> `
With this code you will display the titles of these random posts. You can add <?php the_content();?> if you need the content or something else that you need.
I am happy to helpForum: Fixing WordPress
In reply to: How to display random posts from a given category?Ok, you want to keep all this and to add the random posts, right?
Forum: Fixing WordPress
In reply to: How to display random posts from a given category?I have tried it on one of my installation, it is working fine, so just tell me if you can’t figure it out, I will help