trouille2
Forum Replies Created
-
Forum: Plugins
In reply to: [Facebook Feed Grabber] 403 Forbidden on all thumbnails???Ok I got it, I had to uninstall and re-install the plugin.
Forum: Plugins
In reply to: [Facebook Feed Grabber] 403 Forbidden on all thumbnails???No help?
Hi wpsolutions,
Thanks for your time
I checked the log : no log file in your plugin folder
I’ve updated CF7 and the autoresponder : it’s still spinning…I will send you my site url via your contact page you provided.
ChristopheForum: Plugins
In reply to: [CF7 AutoResponder Addon] Something wrong?Did you named correctly the fields in CF7 as “your-name” or “your-first-name” and “your-last-name”?
Forum: Plugins
In reply to: [Facebook Feed Grabber] Bigger thumbnail possible?Ok I figure it out, but it would be great to have this option in the settings.
So, what I did : in page facebook.php in the plugin folder, on line 596, in place of$img = "<img src='". htmlentities($item['picture']) ."' class='thumbnail alignleft' />\n";
I put this :
$imgURL = htmlentities($item['picture']); $biggerImg = substr_replace($imgURL,"n",-5,1); $img = "<img src='". htmlentities($biggerImg) ."' class='thumbnail alignleft' />\n";
This way I got the original sized images which are much more visual.
Forum: Plugins
In reply to: [WordPress Backup to Dropbox] Cannot start (at all) after stopping at 99%I thought it was the manual backup that cause the problem but no, the scheduled backup has the same issue.
Forum: Plugins
In reply to: [WordPress Backup to Dropbox] Cannot start (at all) after stopping at 99%Well I have the same 99% problem, I can restart it, but I have no error message. I started a backup 4 days ago and today I discovered it wasn’t finished… Definitely, there’s a bug somewhere.
Forum: Plugins
In reply to: [WordPress Backup to Dropbox] Unable to Authorize After Upgrading to 1.5.1Hi Michael,
1.5.2 didn’t fix the issue for me but removing and reinstalling the plugin did.
All good. Thanks.Forum: Plugins
In reply to: [WordPress Backup to Dropbox] Unable to Authorize After Upgrading to 1.5.1same problem here
Forum: Plugins
In reply to: [Anything Popup] Only one widget?ok so I changed a bit the code to have a multi instance widget, if you add this to the anythin-popup.php, you should get a standard widget reusable several time :
class apopup extends WP_Widget { /** * Register widget with WordPress. */ public function __construct() { parent::__construct( 'apopup', // Base ID 'Anything Popup Multi', // Name array( 'description' => __( 'Widget to add anything popups', 'text_domain' ), ) // Args ); } /** * Front-end display of widget. * * @see WP_Widget::widget() * * @param array $args Widget arguments. * @param array $instance Saved values from database. */ public function widget( $args, $instance ) { extract( $args ); $title = apply_filters( 'widget_title', $instance['title'] ); $pop_id = apply_filters( 'widget_title', $instance['popID'] ); echo $before_widget; if ( ! empty( $pop_id ) ) //echo $before_title . $title . $after_title; AnythingPopup($pop_id = $pop_id); echo $after_widget; } /** * Sanitize widget form values as they are saved. * * @see WP_Widget::update() * * @param array $new_instance Values just sent to be saved. * @param array $old_instance Previously saved values from database. * * @return array Updated safe values to be saved. */ public function update( $new_instance, $old_instance ) { $instance = array(); $instance['title'] = strip_tags( $new_instance['title'] ); $instance['popID'] = strip_tags( $new_instance['pop_id'] ); return $instance; } /** * Back-end widget form. * * @see WP_Widget::form() * * @param array $instance Previously saved values from database. */ public function form( $instance ) { if ( isset( $instance[ 'title' ] ) ) { $title = $instance[ 'title' ]; $pop_id = $instance[ 'popID' ]; } else { $title = __( 'New title', 'text_domain' ); $pop_id = __( 'Popup ID', 'text_domain' ); } ?> <p> <label for="<?php echo $this->get_field_id( 'title' ); ?>"><?php _e( 'Title:' ); ?></label> <input class="widefat" id="<?php echo $this->get_field_id( 'title' ); ?>" name="<?php echo $this->get_field_name( 'title' ); ?>" type="text" value="<?php echo esc_attr( $title ); ?>" /><br/><br/> <label for="<?php echo $this->get_field_id( 'pop_id' ); ?>"><?php _e( 'ID du popup:' ); ?></label> <input class="widefat" id="<?php echo $this->get_field_id( 'pop_id' ); ?>" name="<?php echo $this->get_field_name( 'pop_id' ); ?>" type="text" value="<?php echo esc_attr( $pop_id ); ?>" /> </p> <?php } } // class Foo_Widget // register Foo_Widget widget add_action( 'widgets_init', create_function( '', 'register_widget( "apopup" );' ) );
Forum: Plugins
In reply to: [Anything Popup] Unable to use shortcodes after updating to latest versionIn the php anything-popup.php file, line 64, you have :
$pop_content = stripslashes($data->pop_content);
add this line :
$pop_content = do_shortcode($pop_content);
Forum: Plugins
In reply to: [Email Before Download] PDF issueThe same for me.
Forum: Plugins
In reply to: [Lightbox Gallery] Multiple galleries in the code? no shortcodeOk, I knew the question was stupid, but step by step I learn wordpress and find solutions. So for those who are in the same situation : to put hardcoded multiple galleries, in your “A” tag, the rel parameter should have the shortcode aswell :
<a href="'img_src.jpg'" rel="lightbox[gallery1]"><img .../></a>
Forum: Reviews
In reply to: [Format Media Titles] Can't wait the next versionSorry for the misunderstanding, I changed my page to output the title in place of the alt. I didn’t changed the plugin. Would like to be able… One day maybe…
Forum: Reviews
In reply to: [Format Media Titles] Can't wait the next versionI needed the replication of title onto alt field. But it’s all right now, I changed the code. Will look forward for the next review and wait patiently. ?? thanks anyway.