Bolton Studios LLC
Forum Replies Created
-
Forum: Plugins
In reply to: [Read More WP] Change the elipsis@egocentralisjap Hello, thanks for inquiring and trying the plugin. Using CSS or JavaScript is the best way to change the ellipsis (…) to an arrow or a dot in the current version of the plugin. For example, adding the following CSS to the Theme Customizer in Appearance > Customize > Additional CSS should allow you to replace the three dots with a dot, arrow, or chevron/double arrow.
/* Hide ellipsis */
.ellipsis{
font-size: 0;
}
/* Add arrow (option) */
.ellipsis:before{
content: ">";
font-size: 20px;
}
/* Add dot (option) */
.ellipsis:before{
content: "?";
font-size: 20px;
}
/* Add chevron (option) */
.ellipsis:before{
content: "?";
font-size: 20px;
}Please try and let me know if that works. Feel free to post a link to your site here or send it to [email protected] if you have any trouble and I can adjust the CSS for your page.
Got it. Thank you for writing. I replied to your email and will update this ticket once we have a solution.
Forum: Plugins
In reply to: [Read More WP] The plugin affects my footer on shop page@waseemsannib Hello, thanks for trying the plugin and please excuse the lateness of this reply. I reviewed the page but it looks like you found a workaround with a different plugin. I am not familiar with any bugs in the plugin affecting page layouts but I can investigate further if needed. Otherwise, I will mark this ticket resolved.
Forum: Plugins
In reply to: [Before + After Images for Divi] Images not showing on SafariHello, I have not heard back so I will mark this thread resolved. Thank you for trying the plugin.
Forum: Plugins
In reply to: [Before + After Images for Divi] Before + after expanded imagesHello, I have not heard back so I will mark this thread resolved. Thank you for trying the plugin.
Forum: Plugins
In reply to: [Before + After Images for Divi] Before + after expanded images@martamariona Thank you for your patience. I looked at the link you need help with and I see the before-after images slider loaded at the bottom of the page, but only one example. Is there still a problem?
Forum: Plugins
In reply to: [Before + After Images for Divi] Images not showing on Safari@multipapaya Hello and thanks for writing. Does the slider on this demo page work for you in Safari? Demo
Can you post your site link in this thread (where you see the error) or send it to?[email protected]? I will take a look.
Forum: Plugins
In reply to: [Before + After Images for Divi] Images not showing on SafariGreat. No problem.
Forum: Plugins
In reply to: [Before + After Images for Divi] Images not showing on SafariHello, thanks for writing and sharing this info.
Can you post your site link in this thread (where you see the error) or send it to [email protected]? I can take a look if you want.
Forum: Plugins
In reply to: [Easy Zillow Reviews] Review OrderHello, This bug should be fixed with reviews correctly sorted by date (newest first) in the latest version, 1.5.3. Please update to version 1.5.3 and let me know if you have any problems. Thanks again.
Forum: Plugins
In reply to: [Easy Zillow Reviews] Review OrderAfter looking into the issue, I believe there is a bug with the sort order parameter (“orderby”) in Zillow’s API implementation, which powers the plugin. Zillow transitioned to a new API provider, Bridge, about six months ago, and I have troubleshot other issues with their support teams since then. In testing, the orderby parameter causes the API call to return an error, even when using example inputs that Bridge provides in their API Explorer. Therefore, I opened a support ticket with Bridge and hope to issue an update in the coming week after discussing it with them. Thank you for reporting this issue.
Forum: Plugins
In reply to: [Easy Zillow Reviews] Review OrderHello and thanks for trying the plugin. No, there is no order control setting—but the reviews should be newest-to-oldest by default. Are they not on your site? I will add an order-by feature to permit various ordering options in an upcoming release and update this ticket when it is available.
Forum: Plugins
In reply to: [Page Restrict] WordPress 6.0 CompatibilityThe latest version works with WordPress 6.0.2 in my tests, but not on older versions of PHP (probably nothing below 7.0). I got the following error message:
- Plugin could not be activated because it triggered a fatal error.
Parse error: syntax error, unexpected ‘?’ in /home/jdlzuxir7txb/public_html/wp-content/plugins/pagerestrict/pagerestrict.php on line 31
I fixed it on a client site using WordPress 6.0.2 (the latest version at this writing) and PHP 5.6.4 by changing Line 31 from…
return $pr_options[$option] ?? false;
…to….
return isset( $pr_options[$option] ) ? $pr_options[$option] : false;
Forum: Plugins
In reply to: [Easy Zillow Reviews] Zillow Reviewer external link brokenAfter reviewing this issue in a little more detail, I see that the URL’s under discussion are returned by the reviewURL field in the Zillow Reviews API result. Therefore, the structure of the URL is not something that is hardcoded by this plugin. I will consider adding an option to turn-off the link altogether in a future update since it no longer takes users to an individual review (due to changes on Zillow’s side). Thanks.
Forum: Plugins
In reply to: [Easy Zillow Reviews] Zillow Reviewer external link broken@dimchik Thank you for taking the time to report this and for the positive comments about the plugin. It looks like Zillow implemented a redirect for those URL’s as I am no longer seeing 404 errors returned by them.
Example: https://www.zillow.com/profile/pstalker/Reviews/?review=5428559
However, I will change the URL structure as you suggested in the next update. Thanks again.
- Plugin could not be activated because it triggered a fatal error.