jdlintz
Forum Replies Created
-
Forum: Plugins
In reply to: [WP UI - Tabs, Accordions, Sliders] br tags removed from contentlittle bump?
Forum: Plugins
In reply to: [WP UI - Tabs, Accordions, Sliders] br tags removed from contentDid this in fact get fixed? I’m still having trouble with the break tags being removed in accordion content. Using the latest version from your GitHub.
Same problem here. I believe it has to do with the plugin performing it’s own ‘add_image_size’ function at line 303
function responsive_slider_image_sizes() { $options = get_option( 'responsive_slider_options' ); add_image_size( 'slide-thumbnail', $options['slide_width'], $options['slide_height'], true ); }This is what crops the uploaded image to the requested size. The author does warn us to set the image size before we start making slides, but we’re apparently out of luck if we change our mind later.
The plugin options do get updated when you change the width and height values, but the dimensions of the inline outputted image are pulled from the ‘slide-thumbnail’ size option on line 262
$slider .= get_the_post_thumbnail( $post->ID, 'slide-thumbnail', array( 'class' => 'slide-thumbnail' ) );Until the author fixes this, I’ve hacked a solution by simply changing the ‘size’ parameter of ‘get_the_post_thumbnail’ from ‘slide-thumbnail’ to ”, thus making it choose the full size image and letting me resize via css elsewhere.
$slider .= get_the_post_thumbnail( $post->ID, '', array( 'class' => 'slide-thumbnail' ) );Just updated to 1.4.1. Glad to see the advanced options as a form rather than having to edit the config file. Much more user friendly.
Perhaps my Topic title is confusing. I’m not expressing an issue, but rather a feature request. I do not want the ZIP file to be sent by email, just the download link. I managed to hack a bit and get the result I’m looking for, but it could be a handy option to include on the settings page.
Also, it would be nice to be able to send to multiple email addresses.
Keep up the good work. This plugin is on it’s way to being my recommended backup plugin for my website design clients.
Forum: Fixing WordPress
In reply to: Custom Taxonomy Permalink Sturucture breaks Page URLsEureka! It has taken a couple of days, but I finally found the solution and it is…wait for it… the ‘with_front’ parameter of ‘rewrite’ when registering the taxonomy.
With a permalink structure containing no static text, I kept getting 404 errors when viewing my Pages. The solution was to add the same text used in my ‘issue’ taxonomy’s rewrite as the static text and then setting the ‘with_front’ to false for both ‘issue’ and ‘column’ taxonomies. So my permalink structure is now /issue/%issue%/%column%/%postname%/ with taxonomy rewrite slugs as ‘issue’ and ‘column’ respectively.
Thus:
Links to http://www.magazine.com/%issue%/%column%/%postname%/
become http://www.magazine.com/issue/%issue%/column/%column%/%postname%/and links to http://www.magazine.com/issue/%issue%/ or http://www.magazine.com/column/%column%/
DO NOT become http://www.magazine.com/issue/issue/%issue%/ or http://www.magazine.com/issue/column/%column%/This might not make any sense to anyone else, but if it does, great! It has certainly been therapeutic for me to try and explain my process.
Forum: Fixing WordPress
In reply to: Custom Taxonomy Permalink Sturucture breaks Page URLsOops, broke the code rule. Here it is:
Forum: Plugins
In reply to: add variables from a widget to wp_footerGot the same question. Would love to know how to make it happen.
A breakthrough (possibly)!
When viewing my development site using the default MAMP url of “http://localhost:8888/wordpress” I get the ‘r is null’ error but when using the actual local IP address “http://10.0.1.1:8888/wordpress” (e.g.) the slideshow works fine.
Hopefully this will give us a clue?
Well, rasdesignmedia is a step ahead of me. I can’t get the local or deployed version to work. I had a brief moment of functionality in Safari, but it seems to have been a fluke. On refresh, all I get is the spinner and the same ‘r is null error.’
I am having this same issue and the bugfix fails me too.
Forum: Fixing WordPress
In reply to: Upgraded to 3.0 — Observing Weird ProblemsHaving the same issue with 3.0 and Earthlink. I’ve tried nacin’s suggestion above, downloaded 15359 version of post.php, but it doesn’t fix the issue. It seems we’re all having problems with post-new.php not post.php. I’m sure all the files are interconnected, but is there a new version of post-new.php that might fix thing?
Forum: Plugins
In reply to: The Flash Player and a browser with Javascript support are needed..I’ve got the same problem.
Works great in Firefox, but not in IE8.Any clues?
-j-