mido116
Forum Replies Created
-
Forum: Networking WordPress
In reply to: can't access subsites – "redirect loop"Are you using sub-domain or sub-directory installation? also are you using a mapping plugin?
Forum: Themes and Templates
In reply to: [Childishly Simple] can I remove horizontal menu at the top?In your WordPress admin dashboard, under the menu “Appearance” click on “Menus”, and if you have any elements on your menu just remove them. The menu won’t appear on your site if it does not contain any elements.
Forum: Themes and Templates
In reply to: [Vantage] Removing Comments on PagesTry using this plugin:
http://ww.wp.xz.cn/plugins/disable-comments/Forum: Themes and Templates
In reply to: [WP-Creativix] Widget innactifHi,
I take it you were using a theme before and now you changed to a new theme. Well if that is the case, this means that your new theme does not have an active sidebar that WordPress will use to show the widgets.Forum: Themes and Templates
In reply to: [SemPress] Changing widgets in functions.phpYes it is clean code, I can see that you removed the action of the parent theme and replaced it with your action. Personally I would do it like that.
Forum: Themes and Templates
In reply to: [SemPress] Changing widgets in functions.phpIf you take a look at the line 269 on pfefferle’s code you’ll see that he did exactly what i said, he changed h1 to h3. But still I am not really sure what you mean by static and dynamic sidebar.
And as for knowing how to code up a child theme’s functions.php you can refer to it here where they explain exactly how you can create your own functions.php on your child theme.The best of Luck
Forum: Themes and Templates
In reply to: [SemPress] Changing widgets in functions.phpWell, I am not really sure what changes you are looking for on the sidebar, but that will change the widget tile from <h1>Tile</h1> to <h3>Title</h3>.
You can inspect the widget title in your browser to if the change actually happened.
maybe you are not seeing any changes because the tags h1 nad h3 has the same style in your theme.Forum: Themes and Templates
In reply to: [Cloriato Lite] Latest blog posts on static home pageHi,
Well if the area you want to show the latest posts on it is the sidebar or a place which accepts widgets, you can install a plugin that do this. There are many plugins that can help you with this.
Special Recent Posts
Recent Posts Widget ExtendedThe Best Of Luck
Forum: Themes and Templates
In reply to: [SemPress] Changing widgets in functions.phpHi,
You can just change the html markup on the two sidebars:
So change this part of the code:'before_title' => '<h1 class="widget-title">', 'after_title' => '</h1>',To
'before_title' => '<h3 class="widget-title">', 'after_title' => '</h3>',I hope this answers your question.
The Best Of Luck