damanmehta
Forum Replies Created
-
Forum: Plugins
In reply to: [Braintree for WooCommerce Payment Gateway] Order status on holdSame here!
Forum: Plugins
In reply to: [Search by Algolia – Instant & Relevant results] Queue doesn’t processShow Log file:
Array
(
[attributesToIndex] => Array
(
[0] => unordered(post_title)
[1] => unordered(title1)
[2] => unordered(title2)
[3] => unordered(title3)
[4] => unordered(title4)
[5] => unordered(title5)
[6] => unordered(title6)
[7] => unordered(taxonomies)
[8] => unordered(content)
)[customRanking] => Array
(
[0] => desc(is_sticky)
[1] => desc(post_date)
)[attributeForDistinct] => post_id
[distinct] => 1
[attributesForFaceting] => Array
(
[0] => taxonomies
[1] => taxonomies_hierarchical
[2] => post_author.display_name
[3] => post_type_label
)[attributesToSnippet] => Array
(
[0] => post_title:30
[1] => title1:30
[2] => title2:30
[3] => title3:30
[4] => title4:30
[5] => title5:30
[6] => title6:30
[7] => content:30
)[snippetEllipsisText] => …
)Forum: Plugins
In reply to: [Search by Algolia – Instant & Relevant results] Edit Image Size in LoopGo to your Algolia’s Index and see if you have other sizes.
Change this:
src=”{{ data.images.thumbnail.url }}”to:
data.images.large.url or data.images.medium.url
Forum: Plugins
In reply to: [Search by Algolia – Instant & Relevant results] Setup Search Results PageIn Browser’s Console, I see this error: Line 758 “Cannot read property ‘name’ of undefined”
Line 758: indexName: algolia.indices.searchable_posts.name,Forum: Plugins
In reply to: [Search by Algolia – Instant & Relevant results] Setup Search Results PageJust FYI: Plugin is well connected with algolia and autocomplete works.
It happens because of wrong region name and if you correct region name, it doesn’t include bucketname.
Do this if you can edit core files:
amazon-s3-and-cloudfront.php in ClassesComment out these lines:
function sanitize_custom_domain( $domain ) { //$domain = preg_replace( '@^[a-zA-Z]*:\/\/@', '', $domain ); //$domain = preg_replace( '@[^a-zA-Z0-9\.\-]@', '', $domain ); return $domain; }
470 and 471 in “sanitize_custom_domain” function
Then go to your wordpress backend and set custom domain:
s3-us-west-2.amazonaws.com/BUCKET_NAMEJquery validation won’t let you save it.
So you will have to enable the save button.
You can do it by inspect element.