ladygeekgeek
Forum Replies Created
-
Aggh this has happened to me to. Have flushed permalinks, resaved cpt and taxonomies.
Forum: Plugins
In reply to: [Date and Time Picker Field] Doesn't work properly in repeater fieldNo sign of a fix for this yet?
Forum: Plugins
In reply to: [Admin Menu Editor] deprecated logThanks for the quick reply.
You were right – the theme had the conditional statement:if (!is_admin())
I changed this to:
if ( !current_user_can('edit_posts') )
And the error is gone now.
Thanks again for your help!Actually this doesn’t do what I want – which is to only load scripts on the frontend. Perhaps it’s safe to ignore the warning…
Forum: Plugins
In reply to: [Custom Post Type UI] Tags metaboxHmm – the tags metabox has just disappeared for me after i upgraded the plugin. I have added support for tags already. Did you find a fix for this?
Thanks
Forum: Plugins
In reply to: [Relevanssi - A Better Search] PDFs documents not showing up in resultsYes you can short code them on a page e.g
[media-tags media_tags="Policy submissions" ?orderby="post_date" order="DES"?display_item_callback="im_mediatags" numberposts="4"?]
Or you can create a hyperlink to the category page e.g
<a href="/media-tags/policy-submissions></a>
CForum: Plugins
In reply to: [Relevanssi - A Better Search] PDFs documents not showing up in resultsYes the function should be put in functions.php
CForum: Plugins
In reply to: [Dynamic Supages] [Plugin: Dynamic Supages] Menu not appearingThanks for getting back to me Baysas. I’ve changed it to this
if(is_home() || 'post' == get_post_type()){ $post = get_post(get_option('page_for_posts')); }else{ global $post; } $this_page_id=$post->ID;
But it sub-menu still isn’t showing up on individual posts . Not sure what I’ve down wrong….thanks for your help!
Forum: Plugins
In reply to: [Relevanssi - A Better Search] PDFs documents not showing up in resultsYou are a star!! Works perfectly, thank you so much ??
Forum: Plugins
In reply to: [Dynamic Supages] [Plugin: Dynamic Supages] Menu not appearingHi baysaa,
Thanks a million for this.I’ve managed to get the sub menu showing on the post archive page, but it doesn’t show up on the individual posts. Any ideas how I can do this?
Many thanks,Charlie
Forum: Plugins
In reply to: [Relevanssi - A Better Search] PDFs documents not showing up in resultsHi Sabahat –
Do you know how I an update this code to include the excerpt of items, when using short codes to insert list of items in a page.
I’ve tried thi, but to no avail (i’m php newbie!)
function im_mediatags($post_item, $size='') { $image_src = wp_get_attachment_url($post_item->ID, $size); return '<li class="media-tag-list" id="media-tag-item-'.$post_item->ID.'"><a href="'.$image_src.'" target="_blank">'.$post_item->post_title.'</a></li> <li>'$post_item->post_excerpt.'</li>'; }
Thanks