pcamepc
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form 7] Red border appear for not reason in 5.0 updateOk that work, but I still want it to work with my theme which is Jupiter and is not any cheap theme…
So you’re saying me you are making this plugin only for people using default WordPress Themes ?
Forum: Plugins
In reply to: [WP Job Manager] Jobs not showingHi,
I was having the same problem but only in english with WPML. I didn’t have access to my httpd.conf.
I found a solution. By editing wp-job-manager\includes\class-wp-job-manager-ajax.php at line 75.
I updated : $endpoint = trailingslashit( home_url( ‘/jm-ajax/’ . $request . ‘/’, ‘relative’ ) );
For : $endpoint = trailingslashit( ‘/jm-ajax/’ . $request . ‘/’ );
Hope it can work for anyone else having the same trouble.
Thanks
- This reply was modified 8 years, 8 months ago by pcamepc.
Forum: Plugins
In reply to: [Eventbrite API] Only show 2 eventsHi,
The full path is : /wp-content/plugins/eventbrite-api/tmpl/eventbrite-index.php and I added this ‘organizer_id’ => 12911249493, in :
// Set up and call our Eventbrite query.
$events = new Eventbrite_Query( apply_filters( ‘eventbrite_query_args’, array(
‘organizer_id’ => 12911249493,
‘include_unavailable_events’ => true
) ) );For the refresh, I added this to my theme functions.php :
/*** Reduce the eventbrite api default cache time from one day to one hour. ***/
function eventbrite_api_cache_one_hour() {
return HOUR_IN_SECONDS;
}
add_filter( ‘eventbrite_cache_expiry’, ‘eventbrite_api_cache_one_hour’ );Thanks
- This reply was modified 9 years ago by pcamepc.
Forum: Plugins
In reply to: [Eventbrite API] Only show 2 eventsOk,
I made it work by adding ‘organizer_id’ => 12911249493 in the eventbrite-index.php, but I have another question.
When I update an event (like change the title) in eventbrite, it doesn’t update on my website. If I disconnect and reconnect the api in keyring, magic, it’s updated. Why ? I don’t want to reconnect each time.
Thanks
- This reply was modified 9 years, 3 months ago by pcamepc.
Forum: Plugins
In reply to: [WooCommerce] Wrong category parents menuHere is a screenshot : http://screencast.com/t/tMpX7g8bks
Yes I am in the View All Tabs. There should be 4 children to “Boule Chinoises & Kegels as you can see on this second screenshot http://screencast.com/t/Dapk9NLL
Thanks