jeremy9856
Forum Replies Created
-
Forum: Plugins
In reply to: [Multipage] BUG – Bad URL if permalink structure don't finish by /It works
Forum: Plugins
In reply to: [Multipage] BUG – Bad URL if permalink structure don't finish by /I test and it don’t work…
Forum: Themes and Templates
In reply to: [BresponZive] BUG v1.1.0 – Setting page emptyOk I reinstall wordpress and everithing is OK
Forum: Plugins
In reply to: [Multipage] BUG – [nextpage title="My title"] on excerpts on home pageI test on a clean install and it works.
Just a thing, the exerpt on the home page can be cut just after the shotcode [nextpage title=”My title”] if you put it at the very begining of the post.
Forum: Themes and Templates
In reply to: [BresponZive] BUG v1.1.0 – Setting page emptyI tried to delete the version 1.0.2, disable all extensions, install the 1.1.0 and I have the same problem…
Forum: Themes and Templates
In reply to: [BresponZive] BUG v1.1.0 – Setting page emptyI checked on a clean install and the setting page is OK.
What can cause this ?Forum: Plugins
In reply to: [Multipage] BUG – Bad URL if permalink structure don't finish by /Thanks 😉
Forum: Themes and Templates
In reply to: [BresponZive] BUG v1.1.0 – Setting page emptyMore infos, on 1.0.2 setting page is OK.
I am on WordPress 3.6.1Forum: Plugins
In reply to: [Image Credits] Error on function or do_shortcodeThis warning is very simple to fix
Warning: in_array() expects parameter 2 to be array, null given in C:\xampp\htdocs\testsite\wp-content\plugins\image-credits\plugin.php on line 137At the line 137 add just this :
$source_urls = array();Before that :
if ( !empty( $source_name ) && !empty( $source_url ) && !in_array( $source_url, $source_urls ) ) {Forum: Plugins
In reply to: [Multipage] BUG – [nextpage title="My title"] on excerpts on home pageTemporary fix : not set a title for the first page
Forum: Plugins
In reply to: [Multipage] BUG – [nextpage title="My title"] on excerpts on home pageIt seems that the function that parses the post is executed only once whereas on the home page it must be executed as many times as there are post excerpt.
Forum: Plugins
In reply to: [Multipage] Improvement – Do not display title on top of the pageIt’s always better to let’s the choice 😉
Forum: Plugins
In reply to: [Multipage] Improvement – Do not display title on top of the pageI think you can remove that :
// Add subtitle to the page
if ( $page > 1 )
$subtitle = ‘<h2 class=”entry-subtitle”>’ . $post_pages[ $page -1 ] . ‘</h2>’;Forum: Plugins
In reply to: [Multipage] Bug with 0.8 : Warning: call_user_func_array()…A much better fix I think
if(!empty($post->post_content))
$post->post_content = preg_replace( $pattern, ‘<!–nextpage–>’, $temp_content );Forum: Plugins
In reply to: [Multipage] Bug with 0.8 : Warning: call_user_func_array()…My simple fix isn’t working when it’s needed 🙁