ModularBase
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Warning code on home pageThis may answer your problem. http://ww.wp.xz.cn/support/topic/show-error-for-network-site?replies=8
Forum: Themes and Templates
In reply to: [Exray] Remove Calendar in the Footer- ExrayGo to Appearance > Widgets and look for the footer widgets section on the right. Find the Calendar widget, open it and select delete.
The two areas with the ad widgets are:
#horizontal-outer-widgets-1, #horizontal-outer-widgets-2 { display: inline-block; float: left; padding: 10px 0; text-align: center; width: 100%; }What gives them their white background is:
.flattened { background-color: #FFFFFF; border: 1px solid #C0C0C0; }Do not alter your theme’s CSS.
You should use a Child Theme http://codex.ww.wp.xz.cn/Child_Themes or a Custom CSS plugin to make the changes – http://ww.wp.xz.cn/plugins/search.php?q=custom+cssIf you use Firefox, get Firebug to see the underlying code of your site – https://getfirebug.com/
Forum: Themes and Templates
In reply to: [Mantra] How to change unordered list image bullet?@ Andrew Nevins, I know… call it a hurried typo. :p
@jordanhills – A link to your site where this sidebar is, please.
Is the list in a widget? And if so, the name of the widget?And btw, if you’re using Firefox, Firebug is a great addon/tool to have. It installs right in the browser
Forum: Fixing WordPress
In reply to: Images from grayscale into colour when hoveringThis blog post from May 25, 2012 shows that only Chrome support filters as of now. http://www.html5rocks.com/en/tutorials/filters/understanding-css/#toc-availability
(not affiliated with this site)
I did it to my site and it only grayscaled in Chrome.
Forum: Themes and Templates
In reply to: [Prana] Prana child theme footer problemBecause of this –
<?php do_action( 'prana_footer' ); ?>
– it seems that the footer is created through the functions file or loop file of the parent theme. The modifications necessary would be too extensive to relate here.I would look through the WordPress Themes and find one which has a footer with the ability to add widgets to it. There are plenty in there.
Forum: Fixing WordPress
In reply to: How to move a sidebar widget to footer?Did you add that to the Vortex theme?
If so, it will disappear the next time the theme is updated.
Need to use a Child Theme for any alterations. http://codex.ww.wp.xz.cn/Child_ThemesForum: Fixing WordPress
In reply to: Text editing capability?Did you “If comments still show up in the posts you already have, go to each post and deselect Discussion for the post.”?
You should see “Comments are closed.” below the post.
Forum: Themes and Templates
In reply to: [Prana] Prana child theme footer problemFirst, you have to fix this error – http://validator.w3.org/check?uri=http%3A%2F%2Fcasllcky.com%2F&charset=%28detect+automatically%29&doctype=Inline&group=0 – there is an extra
<body>tag in your themeThen:
Download a copy of the parent theme footer.php file to your computer with FTP or through your host admin panel.Upload this footer.php with FTP into your child theme directory (folder). You should now see this in Appearance > Editor in your child theme.
Copy the footer.php code and post it in this thread, wrapping it in ‘code’ tags (select the code and click the code button above the text area)
The code to call the menu is –
<?php wp_nav_menu( array('menu' => 'NAME OF YOUR MENU GOES HERE' )); ?>
– but it may have to go inside something else inside the footer.Forum: Fixing WordPress
In reply to: How to move a sidebar widget to footer?Nothing similar either?
No other Widget Areas in your Appearance > Widgets besides the one sidebar?Forum: Fixing WordPress
In reply to: Text editing capability?The header is above “Test1” or “Test2”. These are the individual titles for the posts. These can be eliminated, but you would have to create a Child Theme to do it.
“Also, I don’t want comments. Is there a way to turn comments off in the blog?”
Go to Settings > Discussion and deselect “Allow people to post comments on new articles”. If comments still show up in the posts you already have, go to each post and deselect Discussion for the post.
btw “The offending code was in header.php.” – this may reappear when the theme is updated. You should contact the theme developer with this error.
Forum: Fixing WordPress
In reply to: How to move a sidebar widget to footer?Look in Appearance > Editor.
Do you have a footer-sidebar.php or something similar? This would be for setting widgets into the footer.Forum: Fixing WordPress
In reply to: How to move a sidebar widget to footer?Please wrap your sidebar code. Select all the code and click the “code” button above the text area. Then update.
Forum: Fixing WordPress
In reply to: Text editing capability?Seems to be on all your pages and posts.
Check: header.php and footer.php. If not there, see if you have a loop.php and carefully check that.If you can’t find it, then contact the theme designers : http://themeforest.net/item/purity-responsive-clean-minimal-bold-wp-theme/639774
Forum: Fixing WordPress
In reply to: How to show specific post type posts?You could search WordPress plugins for “featured authors” – http://ww.wp.xz.cn/plugins/search.php?q=featured+authors – and choose a plugin which suits your needs.