DobsonDev
Forum Replies Created
-
Forum: Plugins
In reply to: [DobsonDev Shortcodes] Auto-Updates in WordPressHi Colin,
Sorry for the late reply (really late as a matter of fact). As far as I can tell reading through my code, the call is only stored to a WordPress transient if the
cache_idattribute is set. So if you just don’t set that then I think it will make the call every time without caching the data. Obviously this will be slower but then you won’t have to update thecache_idconstantly.The other thing I think you can do is set
cache_id="NULL"and that will have the same effect as leaving it out of the shortcode all together.In the future I might add an explicit attribute for the shortcode that tells the user that nothing is being cached, but for now just leaving out the
cache_idor setting it equal tocache_id="NULL"should do the trick.Again really sorry for the late reply – for some reason I’m not subscribed to my own support forum but I’ll change that right now.
Forum: Plugins
In reply to: [DobsonDev Shortcodes] Plugin won’t render MD for GitHub fileHi Colin,
The markdown parameter has to be marked “yes” not “true”, however true makes a lot of sense so I’ll add that in a future update. I have the embed working with the following:
[embedGitHubContent owner=”twuonline” repo=”orientation” path=”/digital-literacy.md” markdown=”YES” cache_id=”0.1”]
I had to add a Cache ID so when I refreshed it didn’t load the old version, so you might have to do the same. I recommend just making it the same as the version control number or something on the repository.
Forum: Plugins
In reply to: [DobsonDev Shortcodes] Renders sometimes, other times nothingThis issue might be happening because your second markdown script is causing an error for Parsedown (PHP markdown script I use in the plugin) and therefore it’s not appearing.
I know GitHub has some specific syntax for their markdown that other engines don’t use so it’s possible that is causing an error for Parsedown and therefore it’s not displaying.
If you send me the shortcode that isn’t working I can test it out and see if I can find out more. You can either reply here or email it to me at alex@dobsondev.com.
Forum: Plugins
In reply to: [DobsonDev Shortcodes] I'm PuzzledHi mythusmage,
A valid PDF source is just a valid path to any PDF file. The best way to use it with your WordPress installation is to upload the PDF to your Media Library and copy the file source from that.
eg. “http://dobsondev.com/wp-content/uploads/2014/03/DobsonDev-Shortcodes-v0_671.pdf”
Once you have that you just use it within the shortcode as follows:
[embedPDF source="http://dobsondev.com/wp-content/uploads/2014/03/DobsonDev-Shortcodes-v0_671.pdf"]You can also use something like Amazon S3 or whatever to host the file if you want to. Hopefully that helps out!
Forum: Plugins
In reply to: [DobsonDev Shortcodes] Can't embed from GitHubI emailed back and forth with Jacob and we figured out the problem but I thought that I would include it here in case anyone searches.
The problem occurred because cURL was unable to verify the certificate provided by the server. This can be solved in two different ways:
1. Use curl with CURLOPT_SSL_VERIFYPEER => false which allows curl to make insecure connections, that is curl does not verify the certificate.
2. Add the root CA (the CA signing the server certificate) to etc/ssl/certs/ca-certificates.crt
I will do an update later today that allows for an option to allow insecure connections if the user needs to do that. The default cURL calls in both the GitHub Readme and GitHub File Contents shortcodes will still be secure.
If you do need to use insecure connection then use the following syntax (this is an example using Font Awesome): [embedGitHubReadme owner=”FortAwesome” repo=”Font-Awesome” insecure=“true”]
Forum: Plugins
In reply to: [DobsonDev Shortcodes] Can't embed from GitHubCan you check if cURL is available on your server? The API calls are done with cURL so this is one of the only problems I could see still getting in the way of the plugin working.
The other option we could do is you could email me your login info and FTP info to alex@dobsondev.com and I could take a look at everything myself.
Thanks!
Forum: Plugins
In reply to: [DobsonDev Shortcodes] Can't embed from GitHubWhat other plugins do you have enabled on your site? I tested the embeds you provided on my own testing site and they all worked – so either the theme or another one of the plugins is conflicting with mine.
Do you know if any of the other shortcodes provided with my plugin work? Also do you know if for some reason CURL is disabled on your server?
If you want to weed out the problem yourself the first step would probably be to deactivate all plugins except for mine, see if that works, then activate the other plugins one by one. You should be able to narrow down what’s causing the problem from there.
If you have any kind of error log and can give me a copy of that I might be able to help more as well.
Forum: Plugins
In reply to: [DobsonDev Shortcodes] Can't embed from GitHubCan you send me the shortcode you are using for the embed? If you could also include the repository you are trying to embed from GitHub that would be great as well.
Thanks!
Forum: Plugins
In reply to: [DobsonDev Shortcodes] Love this plugin!EDIT: the code should be
div.dobdev-twitch-container {float: left; width:70%; padding-right: 5px; } div.dobdev-twitch-chat-container {float: right; width: 30%; }Forum: Plugins
In reply to: [DobsonDev Shortcodes] Love this plugin!Hi Cedric,
Use the following and I think it should work better:
#div.dobdev-twitch-container {float: left; width: 70%; } #div.dobdev-twitch-chat-container {float: right; width: 30%; }The padding-right: 5px; is optional but it adds a little small space between the main video and the chat which I think looks a little better then them touching.
I think I’ll most likely implement this feature right into the plugin in a future content update, possibly tomorrow or later this week. I think this is a feature a lot of people will want so it’s probably a good thing to have.
Thanks for using my plugin!
Forum: Plugins
In reply to: [DobsonDev Shortcodes] The PDF does not work on mobile devices.Unfortunately not right now. The PDF viewer uses the default built-in viewer that comes with most browsers, but mobile browsers do not include this feature so it will not display.
Forum: Plugins
In reply to: [DobsonDev Weather] Localizing to Post LocationsIf it’s possible to get the city via the coordinates then you can just enter the city into the shortcode. [weather location=”City/Town, CC” align=”align”].
If not then you can do a coordinate search with the following API call: api.openweathermap.org/data/2.5/weather?lat=35&lon=139. I will try to include Geographic Coordinates as one of the shortcode options in a future update but it shouldn’t be too hard to hack in if you have some plugin programming experience.
Forum: Plugins
In reply to: [DobsonDev Shortcodes] height and width donot workHi klmnweb,
Unfortunately the shortcode is not meant to take in “auto” as a parameter the way it is now. However, if you leave the height blank, it will default to 100% which is pretty much the same as auto. You can also explicitly put 100% if you would rather as well.
Try that and let me know if that works for you.
I have the same problem as well. Hopefully a fix comes soon.
Forum: Plugins
In reply to: [DobsonDev Shortcodes] pdf embed? demo?dobsondev.com/portfolio/dobsondev-shortcodes/