chercka
Forum Replies Created
-
Forum: Plugins
In reply to: [Object Sync for Salesforce] API Shell cacheThanks Jonathan. This data comes back from the response:
[from_cache] => 1
[cached] => 1
[is_redo] =>I would have thought updating the record in SF would cause it to purge the cache and serve up fresh data.
Forum: Plugins
In reply to: [Ultimate FAQ Accordion Plugin] short code for tagsI am also looking for this feature. It’s very useful for me on a post to display faq’s related to a post’s content.
Seems a bit strange that I can add tags to faq’s but not filter by them.
- This reply was modified 4 years, 10 months ago by chercka.
Forum: Plugins
In reply to: [Object Sync for Salesforce] Clarifying sync to WordPress capabilitiesJonathan thank you for that massive and detailed response. That makes a lot of sense.
I’m going to attempt building a script that generates the json for my manually imported objects and then import that into the plugin. I’ll post my results here for future reference.
Can you clarify the ‘date field to trigger pull’ setting? I’m unclear about what to set that to when I want both newly created SF objects and newly updated objects to be sync’ed.
- This reply was modified 5 years, 1 month ago by chercka.
Forum: Plugins
In reply to: [Object Sync for Salesforce] Unclear installation instructionsResolved.
Forum: Plugins
In reply to: [Object Sync for Salesforce] Unclear installation instructionsFantastic, thank you!
Forum: Plugins
In reply to: [Object Sync for Salesforce] Unclear installation instructionsThanks for the reply!
Hm that’s not what my Classic looks like, see this image.
Under ‘My Settings’ there is nothing relevant, and under the Setup link to the right I can create a custom app but nothing about oAuth settings.
Maybe my Salesforce user is not a developer type?
As a side question – is there any option to schedule a nightly bulk optimization? If not in the admin, then programatically?
Great, hope you have a solution around the corner. Thanks!
Forum: Plugins
In reply to: [WP Posts Carousel] Custom QueryFound a solution, hooking into the ‘wpc_query’ action. For example to update with a custom taxonomy like this:
function custom_posts_query( $query ) { $query = array( 'post_type' => 'books', 'tax_query' => array( array( 'taxonomy' => 'novels', 'field' => 'slug', 'terms' => 'romantic-novels', ), ), ); return $query; } add_filter('wpc_query', 'custom_posts_query', 10, 2);
Forum: Plugins
In reply to: [Instant Articles for WP] Featured ImagesAMP and Instant Articles currently treat featured images slightly differently.
AMP checks if your featured image is being displayed in the post content, and if so it hides the featured image. (repo)
Facebook gives you a warning that the image is both featured and if it is at the top of your post but does not produce an error.
Forum: Plugins
In reply to: [Simple Lightbox] Remove slb_context script from footerI don’t want to use another plugin to do this, as mentioned in a previous ticket:
https://www.ads-software.com/support/topic/how-to-disable-lightbox-on-amp-pages/
I just want to remove this js that is hijacking the page instead of being properly enqueued, the WordPress way.Yeah, whats the new tab solution?
Forum: Plugins
In reply to: [WP Posts Carousel] Displaying Event Date Info in SliderThis is for The Events Calendar:
function my_wpc_item_description( $description, $params ) { $starttime = tribe_get_start_time(); //get the startdate without the time $startdate = tribe_get_start_date($post->ID,false); $description = ' <div class="wp-posts-carousel-desc"> <p>' . $startdate . '</p> <p>' . $starttime . '</p> </div>'; return $description; } add_filter('wpc_item_description', 'my_wpc_item_description', 1, 2);
Forum: Plugins
In reply to: [WooCommerce Auto Category Thumbnails] Category Thumbnails are blurryMy images were also blurry and regenerating thumbnails did not help.
Turns out the plugin is using the thumbnail size image, which in my theme is really small. So in line 99 of the plugin I told it to use the category image instead, changing
echo get_the_post_thumbnail( $product[0]->ID, 'shop_thumbnail' );
to
echo get_the_post_thumbnail( $product[0]->ID, 'shop_catalog' );
This solved it for me, using a larger image.
Forum: Plugins
In reply to: [Mobile Contact Bar] No Instagram iconGreat – thanks!