pberger
Forum Replies Created
-
Forum: Plugins
In reply to: [Event Organiser] Show only single post for recurring event on category pageThanks! I missed the setting in the options.
I had similar problems and in my case it was a conflict with the ShortCode Ultimate Plugin. As support told me they will release a hotfix today or tomorrow to fix this problem.
What generally happens for the second problem: Mailpoet has a signup form with the tag [user], Shortcodes Ultimate replaces that part of the form with something else.
The second problem (After every entered valid email address an error message appears that email address is invalid) is caused by the function addSubscriber in
https://plugins.svn.www.ads-software.com/wysija-newsletters/tags/2.6/helpers/user.php.If Shortcodes Ultimate is disabled the function will receive the following content in the $data parameter:
Array ( [user_list] => Array ( [list_ids] => Array ( [0] => 3 ) ) [user_field] => Array ( ) [user] => Array ( [email] => [email protected] ) [form_id] => 1 [action] => save [controller] => subscribers [wysija-page] => 1 )
If Shortcodes Ultimate is enabled the user Array is missing:
Array ( [user_list] => Array ( [list_ids] => Array ( [0] => 3 ) ) [user_field] => Array ( ) [wysija[email]] => [email protected] [wysija[abs][email]] => [form_id] => 1 [action] => save [controller] => subscribers [wysija-page] => 1 )
The conflict for the first problem (An error message appears on the page if no user is signed in) seems to lie in class Su_Shortcodes function user. If i comment out line 1308 MailPoet seems to work again. But still get the invalid email address error.
Forum: Plugins
In reply to: [Shashin] problems after last udateI seem to have the same issue. example: https://b-sides.ch/blog/events/event/1932/ (click on the gallery tab).
also is it possible to remove the caption using prettyphoto? i include the albums with the following function:
$shortcode = array(
‘type’ => ‘albumphotos’,
‘id’ => $album_id,
‘columns’ => ‘3’,
‘size’ => 72,
‘crop’ => ‘y’,
‘order’ => ‘source’,
‘caption’ => ‘n’
);
echo ShashinWp::display($shortcode);Forum: Fixing WordPress
In reply to: Embed video not working in commentsI’ve the same problem. Do you have found a solution for this?
Forum: Plugins
In reply to: Embedding direct YouTube URL in comments?I’ve the same problem. Do you have found a solution for this?