yoyos33
Forum Replies Created
-
Hi,
It’s very old plans with key expired when I click on confirmation links.
Why is there no option to remove those plans ? I would like to try the new free plan but it’s the old ones I have.
I couldn’t contact you by email because it’s only for paid customers it seems ??
When I want to sign for new free plan:
“Sorry, your order can not be processed now: Free plan limit reached (2 per account).”
- This reply was modified 5 years, 4 months ago by yoyos33.
Forum: Plugins
In reply to: [Responsive Gallery Grid] After update, colorbox not workingFor your information, I switched to a default and updated template, still not working
After that, I replaceed the Jquery Colorbox plugin by Responsive Lightbox and it worked.If it helps you Jules ??
- This reply was modified 6 years, 9 months ago by yoyos33.
Forum: Plugins
In reply to: [Responsive Gallery Grid] After update, colorbox not workingYes Jules, for example this page
Forum: Plugins
In reply to: [Infinite-Scroll] Infinite scroll and httpsMixed Content: The page at ‘https://www.xxx.eu/wp-admin/options-general.php?page=infinite_scroll_options’ was loaded over HTTPS, but requested an insecure image ‘https://www.xxx.eu/wp-content/plugins/infinite-scroll/img/ajax-loader.gif’. This content should also be served over HTTPS.
Going to try you solution JoaoHerberto !
Forum: Hacks
In reply to: Find users by roleI don’t talk about WP filters but just conditions with the find method of User model
I think we should avoid using WP class if we’re using the WP-MVC plugin, right ?
My aim is to fill a select option list of users with role subscriber.
Forum: Plugins
In reply to: [Theme My Login] Display only "Welcome, FirstName" when connectedThis function is outdated.
I used it to meet my needs if someone is interested:function tml_title( $title, $action ) { if ( is_user_logged_in() && $action == 'login') { $user = wp_get_current_user(); $title = sprintf( 'Welcome, %s', !empty($user->user_firstname )? $user->user_firstname : $user->user_nicename ); } return $title; } add_filter( 'tml_title', 'tml_title', 11, 2 );
Forum: Plugins
In reply to: [Theme My Login] Display only "Welcome, FirstName" when connectedThanks, I’ll try that soon ??
Don’t know if it’s the right thing to do but I needed only one image to be sent and displayed directly as featured image. I edited the plugin like this:
in user-submitted-posts.php
I changed :
add_post_meta($newPost, $usp_post_meta_Image,wp_get_attachment_url($attachmentId));
by:
if ($i > 0) add_post_meta($newPost, $usp_post_meta_Image,wp_get_attachment_url($attachmentId)); else set_post_thumbnail($newPost,$attachmentId);