iamdangavin
Forum Replies Created
-
Hm, okay. There could be just some weird interference with the other social plugins on the page. Are they associated with the recipe plugin?
As far as the example you have sent. Looking at the code on that page, it seems there is some weird wrapper stuff breaking around the images. This could be due to the foobox plugin that you are using. Can you deactivate that and check that post?
Let me know what happens.
Would you be able to share a link to your site where this is happening? Thanks!
Looks like on that portfolio page, it is using the featured image. Am I correct on that? If that is the case, this only gets applied to images within the content editor. So when you upload an image and click Insert into Post, it would affect that image, not featured images.
At the moment, that is not a feature but I can look into this. I am not sure there is a good way to target those images.
That’s a great question. I will look into this. Could be something that gets added to the meta screen when you upload the image to your site. I can definitely add this to a future release.
Forum: Plugins
In reply to: [Instagram for WordPress] [Plugin: Instagram for WordPress] GeolocationI figured it all out. updated code here:
using the same to get it into the image attr:
<img src="'.$imagesrc.'" alt="'.$image['title'].'" width="'.$imagesize.'" height="'.$imagesize.'" lat="'.$image['lat'].'" long="'.$image['lon'].'" />
you can also add:
location=”‘.$image[‘location’].'”
id=”‘.$image[‘id’].'”
date=”‘.$image[‘date’].'”Forum: Plugins
In reply to: [Docs to WordPress] [Plugin: Docs to WordPress] Can't get docs folder idNot sure if you are still having issues with this, but the following string in bold is what you need to use as the ID:
folders/0B-J2KpdDWsqONXY4R0VQaHY5Y1U
So your wp-config.php would look like this:
define( 'DOCSTOWP_USER', 'your_username_for_google' ); define( 'DOCSTOWP_PASS', 'your_password_for_google' ); // Folder to Pull From define( 'DOCSTOWP_ORIGIN', '0B-J2KpdDWsqONXY4R0VQaHY5Y1U' ); // Folder to send to once published define( 'DOCSTOWP_DESTINATION', '0B-J2KpdDWsqObWt1NnJYSGlFc2M' );
Hope this helps.
This works, except if the user for some reason leaves all of the options on -select all- and hits submit it redirects to your front page…
Figured out the issue.
I copied the Twenty Eleven Archive template into my taxonomy template and put the custom field info where I needed it, all good now.
This is what I receive when I use the plugin to query a category.
If you notice, not only does it just display one result, but the plugin only allows me to now filter the category of the result page I am on. I this case, client services. Even though I have 3 total options…
Using a Twenty Eleven theme, I have tried this on other themes as well. same result…
CPT Template Page:
https://grab.by/ahmwResult:
https://grab.by/ahmtForum: Plugins
In reply to: [Posts 2 Posts] How to list all the other related PostsI think she meant something like this. I posted a question on this topic as well.
ps. this is some crazy hackery… but it is working…
I am looping through to get the “places” ID and then within that loop I am looping through to get the “articles” associated to that specific “places” ID…
[Code moderated as per the Forum Rules. Please use the pastebin]