nolimit966
Forum Replies Created
-
Forum: Plugins
In reply to: [Salon Booking System] Google calendar sync 500 errorcheers man, just checked and both my google calendar account and WP installation is set to GMT+01:00 London.
Any other suggestions?
Cheers
Forum: Plugins
In reply to: [WCP Contact Form] WCP Contact Form inside a modal popupthat worked a treat. Such a school boy error on my behalf.
Thank you
Forum: Plugins
In reply to: [WCP Contact Form] WCP Contact Form inside a modal popupHi there,
Ive just sent the link over to your email.
Thank you ??
Forum: Plugins
In reply to: [Download Monitor] Form not displaying search results – No results foundThe URL String i am getting is
/?s=test&post_type=dlm_download&dlm_download_category=technical-webinarsBut i just get “Sorry, no posts matched your Search criteria.” ??
Forum: Fixing WordPress
In reply to: WordPress Nav – Moving the menu custom css class to the A anchorDoes anyone know how I can include the CUSTOM CSS (OPTIONAL) data and add it to the anchor tag in this?
Forum: Fixing WordPress
In reply to: WordPress Nav – Moving the menu custom css class to the A anchorInfact ive done it nearly here:
function add_nav_class($output) { $class= $item->classes[] = 'menu-parent-item'; $output= preg_replace('/<a/', '<a class="'.$class.'"', $output, -1); return $output;
I just need to change
$class= $item->classes[] = 'menu-parent-item';
to use CSS Classes (optional). ??Forum: Fixing WordPress
In reply to: WordPress Nav – Moving the menu custom css class to the A anchorthanks a lot Mark. Yeh I noticed. The theme is my own bespoke one ive created. Easy enough to do but the navs can get complex php wise. I originally added this to my functions.php file just to get a class onto the a tag.
function add_nav_class($output) { $output= preg_replace('/<a/', '<a class="your-class"', $output, -1); return $output; } add_filter('wp_nav_menu', 'add_nav_class');
This works OK – I was going to replace the ‘your-class’ output with the ‘CSS Classes (optional)’ one. But i cant find anything in the WordPress documentation to reuse this.
I think ill just stick to the Jquery stuff you showed me. Cheers
Forum: Fixing WordPress
In reply to: WordPress Nav – Moving the menu custom css class to the A anchorFor example, move ‘CSS Classes (optional)’…..
<nav> <ul> <li class="FROM HERE"><a href="#" class="TO HERE">Home</a></li> <li><a href="#">About</a></li> <li><a href="#" class="last">Contact</a></li> </ul> </nav>
Forum: Plugins
In reply to: [G Web Pro Store Locator] Search not working in WordPress 4.0Yeah ive got a ton of errors in the console after the 4.0 update ??
Uncaught SyntaxError: Unexpected token <
(index):468 Uncaught ReferenceError: $j is not defined
(index):470 Uncaught ReferenceError: $j is not defined??
Forum: Plugins
In reply to: [Avatar Manager] Uploaded Avatars keep disappearinggreat plugin, but i have the exact same issue. I have tried the above, but it still does not seem to resolve it.
Any help on this?
Forum: Fixing WordPress
In reply to: Query a WordPress page by its title which has a parent pagesomething like:
&child_of=’designgo’Forum: Fixing WordPress
In reply to: Custom posts sharing common categoryThe main problem is that the categories i am creating in one specific Custom Post type is also appearing in all of the other post types & Categories.
Forum: Fixing WordPress
In reply to: Custom posts sharing common categorycheers. Do you know if this is a problem with ” ‘taxonomies’ => array( ‘category’, ‘updates_taxonomy’ ),” ??
Ive never had this problem before, im slightly confused by it.
Forum: Fixing WordPress
In reply to: Custom posts sharing common categoryIf anyone could give me a quick pointer, i’d be really grateful.
Thank you
Forum: Fixing WordPress
In reply to: Help exclude categories from the blog feedI have managed to do this by just including the blog category i.d (‘cat=31’) in the <?php query_posts> and it worked a treat.
Thanks anyway