WP Birdie
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Woocommerce Action Scheduler DB table crashingThis is a 5 year old site with approx 1500 daily visitors and 20-30 daily order volume
Webhost confirms everything is good at their end find below the link to the gist
https://gist.github.com/t-a-p-a-n/e8277ec984b3b3cb6560f7aa32aa358f
hi Nicola,
Do you plan to build this feature?.. Because I am also looking for something like this to work with Contact Form 7
thanks
Forum: Plugins
In reply to: [Contact Form 7] Locate me – Google MapsAnyone used the Google Geo Locate tool or feature with Contact form 7 ?
did you find a solution to this?
sorry, wrong post
lol, it does and it doesn’t 🙂
Forum: Plugins
In reply to: [WooCommerce] Change "Proceed to Checkout" button action on cart pageit would be nice to have this kind of feature default in Woocommerce.
Plenty of demand for this kind of a toolForum: Plugins
In reply to: [WooCommerce] Change "Proceed to Checkout" button action on cart pageThanks I found a plugin which comes quite close to accomplishing what I was trying to do.
https://wordpress.org/plugins/woo-rfq-for-woocommerce/
Essentially it helps disable all the Payment gateways on the checkout page.. and enables them on the payment page for the customer once I have approved the order.
Forum: Plugins
In reply to: [FancyBox for WordPress] Image title not showingworked for me.. thanks tankedsender
could you tell me when you plan to integrate the customer export feature?
Also I purchase today will I have access to all future versions of the plugin?
Tobias, after looking at all the options, creating a table using your awesome plugin tablepress is still the preferred option 🙂
Only one issue I am trying to figure out is- to link every row to a particular URL similar to the table at http://www.davidchipperfield.co.uk/projects/all
I saw another post here – https://wordpress.org/support/topic/make-rows-clickable?replies=6 and explored your extension here https://tablepress.org/extensions/automatic-url-conversion/
Is there a way to make the entire row clickable without displaying the URL anywhere in the actual table? Also styling it like the sample site above?
Thanks Tobias for your prompt response.
Could I use a custom post type plugin like https://wordpress.org/plugins/types in conjuction with tablepress to create dynamic tables by calling out custom taxonomies?
Forum: Plugins
In reply to: [Meteor Slides] Breadcrumbs and Meteor Slides spacing and alignmentsJosh I managed to fix it by FTP’ing version 1.4 files on the server in the plugin directory.
Hopefully that doesnt break anything else, thanks for your help
Forum: Plugins
In reply to: [Meteor Slides] Breadcrumbs and Meteor Slides spacing and alignmentsthat was quick Josh
Is there something I can do using the built in editor in wordpress?
I am a bit lost right nowOr can I revert to the earlier version and prevent updates to the plugin?
Forum: Plugins
In reply to: [Meteor Slides] Breadcrumbs and Meteor Slides spacing and alignmentsThanks for the tip Josh, I was busy for a few weeks and didn’t acknowledge sooner, I tried your solution, it worked. Thanks for a wonderful plugin and your prompt support.
Just today I updated the meteor slideshow with the new version you released and the slideshow for the inner pages seems to be broken.
So the home slideshow works fine at http://www.vishaljodhani.com/But the inner pages (only three have custom slideshows so far) are broken
http://www.vishaljodhani.com/catalyst
http://www.vishaljodhani.com/connector
http://www.vishaljodhani.com/coachThis is the conditional PHP I have in my site now to match the appropriate slugs for the slideshows
<?php if ( is_front_page() && !is_paged() ) {
if ( function_exists( ‘meteor_slideshow’ ) ) { meteor_slideshow( ‘home’, ” ); }
} if ( is_page( ‘catalyst’ ) ) {
if ( function_exists( ‘meteor_slideshow’ ) ) { meteor_slideshow( ‘catalyst’, ” ); }
} if ( is_page( ‘authentic-leadership’ ) ) {
if ( function_exists( ‘meteor_slideshow’ ) ) { meteor_slideshow( ‘authentic-leadership’, ” ); }
} if ( is_page( ‘speaking-and-storytelling’ ) ) {
if ( function_exists( ‘meteor_slideshow’ ) ) { meteor_slideshow( ‘speaking-and-storytelling’, ” ); }
} if ( is_page( ‘connector’ ) ) {
if ( function_exists( ‘meteor_slideshow’ ) ) { meteor_slideshow( ‘connector’, ” ); }
} if ( is_page( ‘exceptional-events’ ) ) {
if ( function_exists( ‘meteor_slideshow’ ) ) { meteor_slideshow( ‘exceptional-events’, ” ); }
} if ( is_page( ‘hosting-and-facilitating’ ) ) {
if ( function_exists( ‘meteor_slideshow’ ) ) { meteor_slideshow( ‘hosting-and-facilitating’, ” ); }
} if ( is_page( ‘coach’ ) ) {
if ( function_exists( ‘meteor_slideshow’ ) ) { meteor_slideshow( ‘coach’, ” ); }
} if ( is_page( ‘personal-catalyst’ ) ) {
if ( function_exists( ‘meteor_slideshow’ ) ) { meteor_slideshow( ‘personal-catalyst’, ” ); }
} if ( is_page( ‘compelling-communication’ ) ) {
if ( function_exists( ‘meteor_slideshow’ ) ) { meteor_slideshow( ‘compelling-communication’, ” ); }
} if ( is_page( ‘testimonials’ ) ) {
if ( function_exists( ‘meteor_slideshow’ ) ) { meteor_slideshow( ‘testimonials’, ” ); }
} if ( is_page( ‘mystory’ ) ) {
if ( function_exists( ‘meteor_slideshow’ ) ) { meteor_slideshow( ‘mystory’, ” ); }
} if ( is_page( ‘lets-talk’ ) ) {
if ( function_exists( ‘meteor_slideshow’ ) ) { meteor_slideshow( ‘lets-talk’, ” ); }
} ?>