digitalnature
Forum Replies Created
-
– don’t modify any of the theme files, you will loose any changes you made when you update.
– if you need to make css customizations in Mystique, check the “User CSS” section from the theme settings. It’s much easier to use than the WordPress Editor anyway…but if you really insist to modify the style.css file for some weird reason, do what esmi wrote (make a duplicate), then copy all the lines that you changed in the theme settings > User css page. This way you can still update safely, and you won’t have to repeat this everytime you update
Forum: Fixing WordPress
In reply to: having different front/sub pages3. use the widget context plugin
Forum: Themes and Templates
In reply to: Arclite: Upgraded 2.02, lost gallery fade featureenable jQuery from the theme settings, and the gallery lightbox will show…
Forum: Plugins
In reply to: Enqueing dependent scripts/styles only when widget is activeI have the same issue…
Forum: Fixing WordPress
In reply to: Widget container HTML (and missing titles)if it’s missing then it means the widget has no title, so this little hack won’t be applied. jQuery will not move anything if .widgettitle doesn’t exist
one other thing I should mention is the sidebar widget layout with this solution:
'before_widget' => '<li><div>', 'after_widget' => '</div></li>', 'before_title' => '<h2 class="widgettitle">', 'after_title' => '</h2>',output:
<li> <div> <h2> title </h2> content </div> </li>after jQuery is loaded, the output will become:
<li> <h2> title </h2> <div> content </div> </li>Forum: Fixing WordPress
In reply to: Widget > Removewell I know that. the problem is that I can’t find the appropriate action hook ($tag) for the widget “remove” link
Forum: Plugins
In reply to: WP_Cache works in 2.8.4?I have the same problem 🙁
Forum: Themes and Templates
In reply to: Arclite Theme: White padding around sidebar widgetsenable jQuery from the theme settings and the padding will go away.
if you want to know why you can read here more 🙂
Forum: Plugins
In reply to: One post per categoryinto a page, post or widget
Forum: Plugins
In reply to: One post per categoryyou can do this without modifying the theme code, assuming you have Mystique 1.20+
create or edit page/post/whatever, and add this shortcode:
[query count="1" category_id="4"](if you want it on the home page, set this page as your front page from the Reading menu)
here you can find more info about [query]
Forum: Fixing WordPress
In reply to: How to disable popups from nav bar?I don’t see any popups. Check you PC for spyware if pop-ups appear when you click random links…
Forum: Themes and Templates
In reply to: Remove “Categories” in sidebarnot really. there’s a theme option for this
Forum: Everything else WordPress
In reply to: Virus in my WP?these functions will move uploads from a temporary directory to wp-content/uploads (see header/logo upload option in Arclite)
the antivirus you have is not a very good one…
Forum: Themes and Templates
In reply to: How to load page without sidebar?for pages just select the “page without sidebar” template when editing a post.
for posts, you need to do what Erum wrote, but also do that in the header.php file for the “with-sidebar” class
Forum: Fixing WordPress
In reply to: widget ID ?found it.
$args[‘widget_id’]