digitalnature
Forum Replies Created
-
Unless you changed them, no.
You say this started happening after you switched to a different theme – can you post a link to that theme so we can test it?Check the column dimensions settings in the design options for each layout type. Maybe your previous theme removed the records?
Or reset the theme settings, as a last resort…
This is quite weird, it seems you have a plugin that’s removing the layout type CSS class added by the theme on the body tag 🙂
The theme hook looks like it’s working because I see other theme classes, but not that one. Can you disable all plugins, then enable them back one by one to see if a plugin is doing this?
Forum: Themes and Templates
In reply to: Mystique Theme Settings MissingThe settings panel is now only available in 3.x:
http://digitalnature.eu/themes/mystique/Forum: Themes and Templates
In reply to: Mystique 3.0.7: Show links instead of pagesYou should post 3.x-related questions on the official support forum. Wp.org hosts only 2.x
Anyway, read this:
http://digitalnature.eu/docs/adding-or-changing-menusEither create a custom menu and assign it to “Main menu”, or force the fallback to ‘categoryMenu’
Forum: Themes and Templates
In reply to: [Mystique] [Theme: Mystique] Noting like a downgrading update!…but didn’t allow reconstruction the site without deleting the “update” and installing 3.x.
Unfortunately the new theme review process prevents theme authors to upload more complex / feature-rich themes, without months of explaining each function on trac. So the best I could do is to provide a link to 3.0, which is quite stable from 3.0.4 …
Forum: Themes and Templates
In reply to: [Mystique] No Purple?There’s a pink color scheme in the offical 3.0 version:
http://digitalnature.eu/themes/mystiqueForum: Themes and Templates
In reply to: Mystique Page of Postswhy don’t you use the [query] shortcode instead?
Forum: Fixing WordPress
In reply to: Please help!! Blank page when accessing my sitehere:
<?php function my_ads_after(){ global $wp_query; if(is_home() && ($wp_query->current_post+1 == 1)) echo do_shortcode('[ad code=2]'); } function my_ads_before(){ global $wp_query; if(is_home() && ($wp_query->current_post+1 == 1)) echo do_shortcode('[ad code=3]'); } add_action('mystique_after_post', 'my_ads_after'); add_action('mystique_before_post', 'my_ads_before'); ?>be careful when using that option. only use it if you know for sure that the code works. you need some basic php knowledge for that…
Forum: Fixing WordPress
In reply to: Please help!! Blank page when accessing my siteyes, the code above should work. maybe you added a extra <?php or ?> …
anyway, I don’t recommend adding PHP code this way, I don’t think it was a good idea to add this feature 🙂A better way is to create a child theme. Basically put a functions.php file into the child theme directory and inside it paste that code. It does the same thing but you can debug it easier in case of errors.
Forum: Fixing WordPress
In reply to: Please help!! Blank page when accessing my siteafter the last “}”, add a new line (before ?>)
Forum: Fixing WordPress
In reply to: Please help!! Blank page when accessing my sitemost likely you added the wrong stuff in the user functions field from the theme settings. anything you add there is compiled as php code, and if it contains errors it will break any page.
try this:
– change the theme to the default one
– open the theme’s functions.php file, and at the end add:$s = get_option('mystique'); $s['functions'] = ''; update_option('mystique', $s);– refresh the homepage
– go back in the dashboard and change the theme backForum: Fixing WordPress
In reply to: Widget menu all messed upit’s your ‘facebook status’ widget. some error in it stops the page from loading further…
Forum: Themes and Templates
In reply to: Mystique Theme vs adsense bannersthis one should work:
<?php function insert_post_ads($content){ if(is_single() || is_page()) $content .= do_shortcode("[ad code=4 align=center]"); return $content; } add_filter('the_content', 'insert_post_ads', 4); add_filter('get_the_excerpt', create_function('','remove_filter("the_content", "insert_post_ads", 6); return;'), 5);Forum: Themes and Templates
In reply to: Mystique Theme vs adsense bannersadvanced > user functions:
function insert_post_ads($content){ $content .= do_shortcode("[ad code=4 align=center]"); return $content; } if(is_single() || is_page()){ add_filter('the_content', 'insert_post_ads', 4); add_filter('get_the_excerpt', create_function('','remove_filter("the_content", "insert_post_ads", 6); return;'), 5); }