elbego
Forum Replies Created
-
Thanks – could you just provide a link to where the above code I provided is referenced in your documentation?
Many thanks.
Keep it alive please – you messaged me privately. This issue still remains I believe?
Forum: Plugins
In reply to: [The Events Calendar] Event List widget taxonomy not savingHi – is there any news on this? It’s very frustrating and causing much confusion with customers!
Thanks.
Forum: Plugins
In reply to: [Include Me] Does not work – need to downgradeHi – I’ve tried the define(‘INCLUDE_ME_DIR’, ‘*’); fix and it does work for pages and single posts but it doesn’t work for the Posts page as defined in Settings > Reading Settings. also not working in post category pages
No errors just an empty text widget.
Please can you check.
my apologies – my path is /wp-content/themes/kalium-child/plugins/events-manager/templates/calendar-small.php
This doesn’t work.
I might point out that it is also on a multi-site installation – can this affect it at all?
thanks.
Forum: Plugins
In reply to: Adding to a plugin's optionsJust to say – I’ve got this working – it’s just the selection in the admin options page that is acting strangely – It defaults to my new option – (which is great for me!), but would be good to know how to get it working properly for if/when it’s needed.
Cheers
Forum: Plugins
In reply to: [Fluid Video Embeds] Any luck with Video PRO embeds?<div class=”embed-container”><iframe src=”https://player.vimeo.com/video/######” frameborder=”0″ webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>
/* make vimeo iframe videos 100% and auto height */
.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; width: 100%; clear: both;}
.embed-container iframe,
.embed-container object,
.embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }Forum: Themes and Templates
In reply to: [Hueman] Gallery paginationBetter (with lightbox pop=up images) :
$output .= '<a rel="lightbox" href='.$largeimg[0].' title='.$largetitle.'><img src='.$img[0].' width='.$img[1].' height='.$img[2].' /></a>';
Forum: Plugins
In reply to: Image Gallery With PaginationBetter (with lightbox pop=up images) :
$output .= '<a rel="lightbox" href='.$largeimg[0].' title='.$largetitle.'><img src='.$img[0].' width='.$img[1].' height='.$img[2].' /></a>';
Forum: Plugins
In reply to: Image Gallery With PaginationError in line 495, change to :
$output .= '<a href='.$largeimg[0].' title='.$largetitle.'><img src='.$img[0].' width='.$img[1].' height='.$img[2].' /></a>';
Works good!
Forum: Themes and Templates
In reply to: [Hueman] Gallery paginationError in line 495, change to :
$output .= '<a href='.$largeimg[0].' title='.$largetitle.'><img src='.$img[0].' width='.$img[1].' height='.$img[2].' /></a>';
Forum: Fixing WordPress
In reply to: Assigning Category Hierarchy to Posts by ID not alphabeticallyThat’s sorted it!
I am in your debt.
Forum: Fixing WordPress
In reply to: Assigning Category Hierarchy to Posts by ID not alphabeticallysorry about the layout – not sure why its misbehaving!
Forum: Fixing WordPress
In reply to: Assigning Category Hierarchy to Posts by ID not alphabeticallyStill struggling with this – I’m trying to have the option that if a post only has the category of Luxury-training and no sub cat of that it outputs separate code, I’ve tried this but it fails to output anything
// child categories of 'luxury-training' category if ( !empty ( $child_cats ) ) { foreach ( $child_cats as $cat ) { if ( in_array( $cat->term_id, $post_terms ) ) $html .= $seperator . '<a href="' . get_category_link( $cat->term_id ) . '">' . $cat->name .'</a></h3></div> <h2>Visit the <a href="/' . $cat->slug . '">' . $cat->name .'</a> training page</h2></div>'; } } elseif ( empty ( $child_cats ) ) { $html .= $seperator .'<h3></div><h2>Visit the <a href="/' . $cat->slug . '">' . $cat->name .'</a> training page</h2></div>'; }
Forum: Fixing WordPress
In reply to: Assigning Category Hierarchy to Posts by ID not alphabeticallyYes – thats perfect thanks again. ??