cappybara
Forum Replies Created
-
Forum: Plugins
In reply to: [Alpine Photo Tile for Instagram] Instagram feed not found errorSame exact problem here. I also just installed this week, and it was working fine for a day or so. The debugger tells me I’m getting a 500 error. The site is hosted on Dreamhost.
System Check
Check the settings and extensions on your web server.
Current PHP version of your server: 5.3.27
Check: curl_init function found.
Check: Plugin failed to connect to Instagram.com.
Code: 500, Message: Internal Server Error.Check: json_decode function found.
Check: Sample JSON successfully decoded and parsed.Forum: Fixing WordPress
In reply to: Add New Sidebar Information For Each PageI end up having to do this all the time for clients who want different data in the sidebar on each page.
The best method I’ve found is using the Reusables plugin: http://ww.wp.xz.cn/extend/plugins/reusables/
It’s unfortunately out of date, and written for PHP4 (you might have to replace a few <? items with <?php to get it work in certain environments), but it does its job well. Just create a Reusable Region in your sidebar, then make a new Reusable every time you make a new album, and select that reusable on the edit menu for that Page.
Another, cleaner approach that doesn’t rely on plugins you might consider is using
add_meta_boxto directly add that information on each page as meta which you can access with a variety of functions. This approach is a little code heavy, but there are several plugins out there that can automate much of the process for you, and it leads to much less work on your end.Hope this helped!