digitalnature
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Mystique 2.2.2 Search N/Wyes, in the functions field from the theme settings add:
remove_filter('pre_get_posts','mystique_exclude_pages_from_search');Forum: Fixing WordPress
In reply to: Mystique 2.2.2 Search N/Wyou can only search posts in mystique. page search is disabled.
Forum: Themes and Templates
In reply to: Mystique Theme – Twitter Problempost more info please, so I can reproduce the bug.
php version you’re site is running, installed plugins, twitter user name…Forum: Themes and Templates
In reply to: Removing shadow effect from main menu in Mystiquethis is possible in a older version of Mystique (1.72 and lower).
you can still download it from wordpress org:
http://wordpress.org/extend/themes/download/mystique.1.7.2.ziponce you activate it enable the “imageless” option from the theme setting. it does exactly what you want…
Forum: Themes and Templates
In reply to: Mystique side bar and page width HELP!Forum: Themes and Templates
In reply to: Mystique | Pages and Categories in headerright now the only way you can do this is by creating pages that show the same content as the category/archive pages, using the [query] short code.
or you can try this
I thought about implementing custom menus, but it’s not worth it since WordPress 3.0 already has these feature…
Forum: Themes and Templates
In reply to: Tablesjust checked, and actually the table thing was really a mystique bug. I feel so ashamed now 🙂
download 2.2.2 from the official site for the fix. thanks guys 🙂
Forum: Themes and Templates
In reply to: Tableshttp://wordpress.org/support/topic/378377 and http://wordpress.org/support/topic/372728
that’s disabled in 2.2.1, it wasn’t really a bug, just a plugin conflict…http://wordpress.org/support/topic/377058
on a normal wp site + mystique, first load is just ~300K, less than the average site…
there are many factors that can cause slow load – plugins, host etc.Forum: Themes and Templates
In reply to: Tablesit’s not a bug. it’s just that most plugin authors don’t bother to style their tables and leave the default styling provided by the theme…
just add in the user css section
table td,table th,table tr.even td,table tr:hover td{border:0;background-color:transparent;}if you know any real bugs, just e-mail me and they’ll be fixed. you can make mystique better 🙂
Forum: Fixing WordPress
In reply to: Seperate right sidebar / mainchange the first “right top” with “left top”
Forum: Themes and Templates
In reply to: Add pages to category nav baryes. in advanced > functions:
<?php function my_navigation(){ echo '<li><a class="fadeThis" href="#"><span class="title">Name here</span></a></li>'; echo '<li><a class="fadeThis" href="#"><span class="title">Another one</span></a></li>'; } add_action('mystique_navigation', 'my_navigation'); ?>Forum: Themes and Templates
In reply to: How to add advertisement after first post?yes, upgrading from 1.7 to 2.x can go wrong since most of the code has been changed in 2.0
try this:
– disable any cache plugins
– delete the old theme, the upload the new one
– refresh the homepage, enable back the cache pluginsif this still doesn’t fix the problems, press the “reset settings” button from the theme settings. make sure you save any code you have there before you do that
Forum: Themes and Templates
In reply to: How to add advertisement after first post?yes.
I would advise you not to make changes to the theme files in the future. The ‘functions’ and ‘user css’ options should be enough to make any modifications you want to the theme, without loosing them in updates
Forum: Themes and Templates
In reply to: How to add advertisement after first post?are you using mystique 2+ ?
Forum: Themes and Templates
In reply to: How to add advertisement after first post?replace the adsense from ad code #2 with some dummy text and see if it shows up.