bshuchter
Forum Replies Created
-
Thanks @thelmachido!
That is very cool. I’ll be using TT3 more and more for developing new sites.
Thanks for the quick reply.
For example, in Appearance → Editor → Templates → Home, I added a second image block to the header and assigned custom CSS classes to it. The custom CSS was added to Appearance → Customize → Additional CSS.
If I can update the theme without losing these changes, does that mean they’re stored in the database?
Forum: Plugins
In reply to: [Accordion Blocks] Custom block stylesThanks for the quick response, and for the info. It worked like a charm!
Forum: Reviews
In reply to: [Store Locator Plus? for WP] Ditto on Fast Support!I appreciate the new articles about this subject. The one on protecting your Google API keys was especially helpful. The articles helped clear up the issue for me. It would be helpful if the new articles could be added as links next to the Google API key interface in WordPress.
No, sorry, I don’t know how to do that in Ultimate Member.
For what it’s worth, I used Gravity Forms on another website, and when a field is hidden, they disable the test to see whether that field is required.
Forum: Plugins
In reply to: [Search Everything] Search ACF Field LabelsThanks for the reply. What you’re saying makes sense to me.
Forum: Plugins
In reply to: [Dave's WordPress Live Search] Not pulling correct Author in meta dataI fixed this by tweaking class-daves-wordpress-live-search-results.php, line 56, to:
$authorName = get_the_author_meta( ‘display_name’, $post->post_author );
I switched nice_name for display_name.
Hi. I was able to fix this by going into my .mo and .po files for Polish and changing part of the Plural-Forms line from:
n%10< =4
to:
n%10<=4
(in other words, remove the space before the equal sign)
Forum: Plugins
In reply to: [Dave's WordPress Live Search] The Excerpt are not displayedSame here, I’m not seeing excerpts, nor first 20 characters. Not using Relevanssi or any other search function, other than native WordPress and this plugin. Other than that, I’m enjoying the plugin!
Forum: Plugins
In reply to: [SEO Data Transporter] SEO Ultimate to WordPress SEO breaks WordPress SEOHi. Thanks for the response. I checked with the host (WP Engine) and they say their server is limited to queries less than 16k in length. Since we have thousands of Title and Description records in SEO Ultimate, I’m guessing that the query that’s trying to handle them is choking the server. It would be great if the plugin could somehow parse the query in chunks. Or, failing that, give me the option to only transport some settings and not others.
Forum: Plugins
In reply to: [Secure Custom Fields] repeater field working on one page but not othersI managed to fix this problem by using a different loop, namely:
$rows = get_field('photos'); if ($rows) { echo '<div id="photo-gallery">'; foreach ($rows as $row) { echo '<img class="alignleft size-thumbnail" src="'; echo $row['photo']; echo '" />'; } echo '</div>'; }
It now shows up properly in every page using that template.
Forum: Plugins
In reply to: [Contact Form 7] [Plugin: Contact Form 7] keep field populated after submit??I would also like this functionality. For my form, when a user submits, an email is sent but also a table on that page gets updated with values from the form. I would like the values to remain in the form so the user can edit them and re-submit in order to update the table.