crawpdx
Forum Replies Created
-
Forum: Plugins
In reply to: [Yoast SEO] Breadcrumbssame thing on my site. it also turned off breadcrumbs on my site after upgrade. I had to manually turn them back on.
Forum: Plugins
In reply to: [WP REST API (WP API)] Retrieve all mediaI would use https://www.ads-software.com/plugins/rest-api/ that is the official Wp rest api. thanks
Forum: Plugins
In reply to: [Every Calendar +1 for WordPress] Civicrm no events in calendarFor those who need the info. If you run this plugin and run the CiviEvent Widget plugin at the same time, your events will not show on the calendar generated by this plugin.
Forum: Plugins
In reply to: [WP REST API (WP API)] Retrieve all mediaVersion 2 can be found here: https://www.ads-software.com/plugins/rest-api/
Forum: Plugins
In reply to: [WP REST API (WP API)] Retrieve all mediathis issue is solved by upgrading to version 2 of this plugin.
Forum: Plugins
In reply to: [WP REST API (WP API)] html tags in content- WP REST API pluginI was able to use a meteor package that initially strips tags and then you can set it to allow certain tags, keeping the tags in your wp content
Forum: Plugins
In reply to: [WP REST API (WP API)] html tags in content- WP REST API pluginYou may already know this but I’m storing the results of my API call into a meteor template and then adding that template to my html.
Here’s the template:
Template.layout.curfilm =function(){ var episode = Session.get('episode'); Meteor.call('getFilm',episode,function(err,results){ console.log(results); Session.set('film',JSON.parse(results.content).content); }) return (Session.get('film')); };
and here’s the html:
<h1> <p>{{curfilm}}</p> </h1>
I’m expecting the sentence from the content as the following:
“This is the test post content”
but I’m getting:
“<p>This is the test post content</p>”
I’d like to use those tags to format the content. How can I do that?
Thanks for your help.
Forum: Plugins
In reply to: [Localendar Calendar for WordPress] 2 calendars, one pageAny help from the plugin author would be greatly appreciated.
Forum: Plugins
In reply to: [Localendar Calendar for WordPress] 2 calendars, one pageHere is a link with the calendars that have the issue
https://scentmd.com/allergy-calendars/
One correction- when trying to advance the calendar to the next month on the bottom calendar, it will advance the top calendar, not the bottom calendar.
Forum: Plugins
In reply to: [Categories Images] Alt TagsI was wondering about this as well.
When I run my pages through the validator, it is reporting that the images posted by this plugin don’t have alt tags.
Is there a solution for that issue?
Other than that, the plugging has been rock solid for me.
Thanks-
Thanks for the solution, vijilov – I was trying to do the same thing!
Forum: Fixing WordPress
In reply to: upgrade from 3.0Thank You for the link!
Forum: Everything else WordPress
In reply to: Version Control for theme devThanks for all the great info.
Just getting a handle on terms and workflow is enough work but this gets me going in the right direction.
Thanks again!
Forum: Everything else WordPress
In reply to: Version Control for theme devThanks Andrew- that gives me another avenue to explore.
Forum: Plugins
In reply to: add a "Add to Favorites" button in nextgen galleryOne question for you- can a user login and see the images that they have marked as a favorite?