digitalnature
Forum Replies Created
-
Forum: Plugins
In reply to: Getting widget instance settingsok, i managed to resolve this.
it seems that $this gets the ID variable set after the widget are initialized, so I hooked a action with my function to “widgets_init”…Forum: Plugins
In reply to: Getting widget instance settingsok, I found out how to get the widget options, using get_option():
get_option($this->option_name)I get a array with all instances options.
The problem is that I don’t know the current instance ID so I can’t retrieve only the options for the instance I want.Is there any way I can get the instance ID in my custom function?
Forum: Themes and Templates
In reply to: Change Navigation to Blackif you’re using > 2.4 replace
ul#navigationwithul.navigationin the code abovefeatured posts can be selected from the dashboard – posts page.
Forum: Themes and Templates
In reply to: Mystique 2.4.2 — Issue with Column Width [NSFW]in the user css field add:
body.fluid .page-content{ max-width: 1200px; }leave the fluid option on. fixed width means fixed @ 940px.
Forum: Themes and Templates
In reply to: Mystique 2.4.2 not showing top menu correctlyif you see blue, unstyled links, then it’s either browser cache thing, or the style.css file didn’t get updated (or you copied the old one over)
Forum: Themes and Templates
In reply to: Mystique 2.3.1 – Sidebar issueprovide a link to your site.
in 90% of the cases it’s a browser cache issue. remember to clear it every time you upgrade a theme or plugin…Forum: Themes and Templates
In reply to: Mystique wrong colour and rss icon displayyes, because the server request url is required to load dynamically generated css/js. Tt might be also needed by plugins or even WordPress for certain operations…
Forum: Themes and Templates
In reply to: Mystique wrong colour and rss icon displaylooks like something is wrong with your WordPress or Blog URL.
the server’s request url points to http://new-www.mindcogsci.netForum: Themes and Templates
In reply to: How to change the transparence in CSS?you can use the css ‘rgba’ value
for example
#main,#main-inside{ background: rgba(255,255,255, 0.15); }255/255/255 is the white color and 0.15 is it’s opacity…
the opacity property works too, but it will make the entire block including its contents transparent (instead of just the background).
both are supported by all browsers (excluding IE, of course).
Forum: Themes and Templates
In reply to: Link categories don’t display in Mystiquei’ve checked the classic theme as it shows that widget the same as mystique (one widget for each category).
anyway, grouping links by category in a single widget is a good idea. I’ll make this change in the future
Forum: Themes and Templates
In reply to: Top navigation barswhich navigation bar?
Forum: Themes and Templates
In reply to: Problem with Next Gen photo gallerydisable the theme built in lightbox from the mystique settings
Forum: Themes and Templates
In reply to: Remove top navigation bar in Mystique Themethere’s a easier way:
go in the theme settings/advanced tab and paste this in the custom functions field:<?php function my_post_filter($post_settings){ if(!is_home()) $post_settings['post_content'] = 'e'; return $post_settings; } add_filter('mystique_post_settings','my_post_filter'); ?>