OllieJones
Forum Replies Created
-
Forum: Plugins
In reply to: [Admin Page Framework] How do I specify css class(es) in addSettingsField?Thanks! Perfect.
Forum: Plugins
In reply to: [WooCommerce] Bookshop: How to bulk-upload products with writers from csvThanks, I got it working.
My merchandising person hopes for a way to import the Bookshop’s “writer” and “format” attributes (book authors! a big deal in bookstores! we have to be nice to them!) in a more graceful way. Can you recommend a better Bookshop product import plugin, paid or free? Thank you.
- This reply was modified 3 years, 6 months ago by OllieJones.
Forum: Plugins
In reply to: [MailPoet Newsletters (Previous)] Sendgrid configuration problemsPerfect, thanks.
Forum: Plugins
In reply to: [WP Easy FAQs] where does my FAQ live on my server?Great plugin.
What’s the best way to make the content of FAQs searchable? Specifically, I’m hoping to make the text of the both questions and answers searchable, and then hyperlink directly to the text from the search results page.
I’m trying the Relevanssi search plugin; it works well (it finds everything). But it doesn’t hyperlink directly to the text of the FAQ answer. Instead , the answer the user wants is hidden in a collapsed panel. On a page with lots of questions and answers, that leaves the user wondering.
Any advice?
Thanks.
Forum: Plugins
In reply to: [MMWW] MMWW image/post idOK: the tags are
{wp:attachmentid} gives the post id of the present post.
{wp:parentid} gives the post id of the post to which this media file is attached.
{wp:parenttitle} gives the title of the post to which this media file is attached.
{wp:parentslug} gives the slug (url fragment) of the post to which this media file is attached.To get them to populate you may need to hit “Reload metadata” from the grid view or list view after saving the file.
Forum: Plugins
In reply to: [MMWW] MMWW image/post idGreg, good idea! Thanks. Stay tuned.
Forum: Plugins
In reply to: [Stout Google Calendar] Loading, but doesn't loadRight, it’s the API deprecation that has put an end to this fine plugin’s usefulness.
Forum: Themes and Templates
In reply to: [Customizr] WPML translations for home page?Hello, I also need to adapt the front page of customizr for localization with WPML. The rest of the site is translated that way.
I have dev skills; I am willing to contribute some development to the plugin if that will help.
Thanks!
Forum: Plugins
In reply to: [TPC! Memory Usage] Getting an info messageThis change to tcpmem.php fixes the information warning.
// Add script-registration action add_action( 'init', 'tcpmem_enqueue_scripts' ); function tcpmem_enqueue_scripts () { // Register scripts and styles wp_register_script('tpcmem', plugins_url('tpc-memory-usage/js/tpcmem.js'), array('jquery'), TPCMEM_VERSION, true); wp_register_script('tpcmem-overview', plugins_url('tpc-memory-usage/js/overview.js'), array('jquery-ui-tabs'), TPCMEM_VERSION, true); wp_register_script('tpcmem-tablesorter', plugins_url('tpc-memory-usage/js/jquery.tablesorter.min.js'), array('jquery'), '2.0.3', true); wp_register_script('tpcmem-reports', plugins_url('tpc-memory-usage/js/reports.js'), array('tpcmem-tablesorter'), TPCMEM_VERSION, true); wp_register_style('tpcmem', plugins_url('tpc-memory-usage/css/tpcmem.css'), array(), TPCMEM_VERSION); }
Note that the dashboard doesn’t work correctly if you use
add_action( 'wp_enqueue_scripts', 'tcpmem_enqueue_scripts' );
instead of
add_action( 'init', 'tcpmem_enqueue_scripts' );
Forum: Plugins
In reply to: [Floating Publish Button] Covers up media manager dialog boxExcellent! Thank you for the fine plugin.
Forum: Plugins
In reply to: [MMWW] focal length or ISO ?Hello Elias, you are right. There was a problem with the
{iso} tag in my plugin. It is now fixed in version 1.0.5. Use{iso}
rather than the other alternatives you mentioned. Thanks for your patience.
Forum: Plugins
In reply to: [MMWW] {iptc:} templates are printed if the field does not existIt’s not the easiest syntax to understand. Thanks for using my plugin!
Forum: Plugins
In reply to: [MMWW] {iptc:} templates are printed if the field does not existYou can use parentheses to get this plugin to replace metadata tags with empty strings.
It works like this:
Suppose you wish to display the IPTC rights usage terms in the item description, if there are any. You put this string into the image description field on the Settings > Media Metadata panel.
(Terms of use: {iptc:rightsusageterms} )
If the “iptc:rightsusageterms” metadata item is in the file, you’ll get something like this:
Terms of use: Evaluation Only
But, if that metadata item is absent, you’ll get nothing.
Notice that it’s helpful to precede each
)
with a space so when you have multiple optional items they’re separated by spaces.Forum: Plugins
In reply to: [MMWW] {iptc:headline} does not workThanks for checking, Pepe. Don’t hesitate to get in touch if I can help. Happy headlining!
Forum: Plugins
In reply to: [MMWW] {iptc:headline} does not work