digitalnature
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Problems with Mystique submenus and Vimeo videothat won’t work. you need to add wmode=transparent to your flash movies.
read here moreForum: Themes and Templates
In reply to: edit page width in mystique themeHi there
to set a custom page width, select the “fluid width” option and in the user css field paste:
.page-content{max-width:980px;}the ie 6 warning is still there and I’m actually thinking to remove the little ie 6 support it has, and disable the theme front end completely for this browser.
Forum: Themes and Templates
In reply to: Mystique Theme – Twitter Problem@brodock and possibly others who are having problems with the twitter widget:
– your hosts don’t allow your wordpress install to retrieve remote data from twitter. search on google “host blocking twitter” for help
– you have another twitter related plugin/or another website hosted on the same server that is using the twitter API. From the error posted above, I understand the twitter limits requests to 150/hour from an IP. Mystique can reach up to 60 requests per hour (you can change this in widgets.php). On shared hosting, a single IP can host 1000 websites…I hope this helps.
@katrina: paste your google analytics code in the footer section (mystique settings > content). you really don’t need a plugin to do that…
Forum: Fixing WordPress
In reply to: Site shows only backgroundtry disabling plugins one by one and see if the same happens.
what version of mystique are you using?Forum: Plugins
In reply to: Post length on front pageyes, change the “420” value with another one.
Forum: Plugins
In reply to: Post length on front pagea better way is to add
post_settings['post_content_length'] = 80;
in core.php, after
$post_settings = get_option("mystique");Forum: Themes and Templates
In reply to: [mystique] Theme doesn’t display correctly in IE7/8it’s not that because your site breaks in Opera too 🙂
most likely you have invalid html in one of your posts or widgets, or maybe in the banner between the postsForum: Themes and Templates
In reply to: Front page width issues – Mystiquelooks like a bp bug.
instead of appending its classes, it overwrites them. weird that it does that only on the homapageForum: Themes and Templates
In reply to: Front page width issues – Mystiqueyes, the homepage body classes provided by the theme are missing. one of them controls the page width.
did you do any changes to the code, or maybe it’s a plugin interfering?
Forum: Themes and Templates
In reply to: Where is the ‘ad’ tab page in the mystique theme?what’s weird. are you using any plugins with Google Chrome that might remove text like “Ads” from a page?
Forum: Themes and Templates
In reply to: Where is the ‘ad’ tab page in the mystique theme?it should be after “SEO |”.
are you using a different language than english?
it might be that one of the translations doesn’t translate the “Ads” text correctly.Forum: Themes and Templates
In reply to: Mystique helpfrom the widgets page. check the “footer” area
Forum: Themes and Templates
In reply to: [Mystique] Placing Ads after x number of posts?the last line of code should be inside the loop.
anyway you can do this without having to modify theme files.
1. create a ad in mystique settings > ads (ad code #2 in my example)
2. go to advanced > user functions and paste:<?php function my_ads(){ global $wp_query; if(is_home() && ($wp_query->current_post+1 == 3)) echo do_shortcode('[ad code=2]'); } add_action('mystique_after_post', 'my_ads'); ?>the ad code #2 will show after post #3, on the homepage only.
Forum: Themes and Templates
In reply to: Flickr Sidebar Problems!maybe the phootoset id doesn’t exist…
a photoset ID should look something like 72157594456847465
and a user ID like this: 39822428@N00Forum: Fixing WordPress
In reply to: Where is the </body>it’s in the footer but there’s no need to make changes to it.
use the footer content textarea from the settings to insert html…