indybook
Forum Replies Created
-
Hi Greet, I’m not getting the e-mail for some reason. [email protected]
Hi Geert,
hm. Too bad. Sounds like the plugins overview page just reloads itself. You didn’t have the same issue with the other plugins, did you?
Would you mind sending the url of the page that you try to get to the settings from?
You can omit the domain if you prefer not to post it or contact me via the plugin home page plugins.cadros.euMeanwhile if not a huge trouble, please try if you can get there with this link:
wp-admin/options-general.php?page=iconic-navigation
( just in case: put it right after your domain.com/ )Forum: Plugins
In reply to: [Iconic Navigation] screen.cssHi ailaG,
You are right. I have to see to that. Will do : )
Thank you for your notes, really handy! did not think of rtl at all 0_0Forum: Plugins
In reply to: [Iconic Navigation] Add own iconsHello k201244,
Thank you for contacting!
Could you specify where exactly do you put blank?Yes, it’s possible to display no text. Check the box ‘Display icons only’ for the menu location you want no text at. This will wrap the menu item text into <span>. Currently it will be hidden on smaller screens only, but you can tweak css a bit to make it invisible on desktops as well. The class you need is mobile_hide. Just put
.mobile_hide {display:none}
to your css file, or the plugin screen.css (found at iconic-navigation/css)
Let me know if this works or you need more help.Hi Geert,
Thank you for your notice!Can you please tell me which one of the links is broken:
Edit | Settings | Docs | Support( All can be found on the plugins table page under the plugin name).
The Support link got wrong as I checked ( my bad, updated, thank you for the notice again! ).
Anyway the Docs and Support link to my web page support. The one that goes to your wp/admin is Settings link. Could you check if this one works for you?Forum: Plugins
In reply to: Looking for best image gallery (image attached)Hi Kevin,
Have you worked it out? In case you haven’t, be the special fancy pro sliders’ effects not too essential you could hook into the native wp gallery and just make a bit of changes, no need for a plugin, especially if you want it to load fastForum: Fixing WordPress
In reply to: Use Custom Post types for gallery posts?Hi Dan,
if by page you mean a custom page template that you created, I’d suggest to just limit a page loop to the category you need to display there.
something like
if( ! in_category('my_category') ) continue;
then you can have whatever post type you chose for allForum: Plugins
In reply to: a page with category imagesHi laurie,
Not sure you need a plugin for this. Most themes would display post thumbnails + short description on a category archive ‘page’. Just look for a theme that has a grid layout for archives so that it looks a gallery. Add the category link to your menu and post normally.Forum: Alpha/Beta/RC
In reply to: TwentyFourteen: Frontpage template not displaying correctly>>things seem to be displaying fine
they are not, I’m afraid. #secondary is still way left offscreen, 3.2-rc2
style.css ~3596Forum: Plugins
In reply to: [Iconic Navigation] error message on activationLi-An, I appreciate your message. The files are correct now, my apologies for late support.
Forum: Plugins
In reply to: [Iconic Navigation] Install errorHi guys.
Updated the folder. Was not an error, I just used the storage repository wrong.
Thank you for reporting! I should have checked on the tread long before. My fault.chicagonews, I liked your page.
Forum: Fixing WordPress
In reply to: get_pages post_type parameter not workingYeah, would be less confusing if it was mentioned at the codex
Forum: Fixing WordPress
In reply to: get_pages post_type parameter not workingif there’s still a need
use smth like this:
function add_hierarchy_to_post() { global $wp_post_types; $post = $wp_post_types['post']; return $post->hierarchical = true; } add_action('init', 'add_hierarchy_to_post');
as the get_pages() runs post_type against is_post_type_hierarchical() and if the given post type fails to be hierarchical it returns pages whatever the args are.
Forum: Hacks
In reply to: Random Default Avatar FunctionHi actionbasic.
no. this means to be a part of the function that you posted.
place the code instead all you have betweenif ( !function_exists
and
}
add_filter( ‘avatar_defaults’, ‘fb_addgravatar’ ); }i’m only not sure what ‘avatar_defaults’ function is to where the filter’s added. so i’m not sure if the new part works as expected.
where you actually have the initial code? at theme functions file? some plugin?
let me know if it won’t workForum: Themes and Templates
In reply to: [Mantra] adjustment of website to different resolutioni’d help if i had your site link