Louis-Philippe Dea
Forum Replies Created
-
Hi Kim,
I just sent you the link. Thank you!Hi Kim,
Same thing. I deleted the plugin and recreated the popups, and I’m having the same issue.. ??Hi Kim,
I did all that (deactivate plugins, switch theme, clear all caches) and same problem.
What’s weird is that the last popup I save in WordPress CMS, will be the one that will be shown and initialized on the front end. The 3 others won’t work. If I save one of the other 3, it will be this one that will be initialize.
Forum: Plugins
In reply to: [Digg Digg] [Plugin: Digg Digg] Floating Bar Does not Show at allHi all, in my case, the problem was due to the fact that my jQuery was loading in the footer. Your “jquery.js” file must be in the header.
Forum: Plugins
In reply to: [GD Star Rating] [Plugin: GD Star Rating] Can't moderate ratingsHi BlackburnLife,
Milan told me that this issue will be resolved on GD Star ver.2 which will be publish soon.
Forum: Plugins
In reply to: [GD Star Rating] [Plugin: GD Star Rating] Can't moderate ratingsSorry, I think my question would be : ” Is there a way to moderate or delete a multi rating a particular visitor? ”
Forum: Plugins
In reply to: GD Star Rating can rate only if a form is filedOk, I found out that you can do a condition like that :
<?php if ( current_user_can( 'edit_posts' ) || ($comment->comment_approved == '0') || ($comment->comment_approved == '1')) { ?>
And then insert the code to display the rating system :
<?php wp_gdsr_render_multi($multi_set_id=0, $template_id=45, $read_only=false, $post_id=0, $stars_set="oxygen", $stars_size=16, $stars_set_ie6="", $avg_stars_set="", $avg_stars_size=16, $avg_stars_set_ie6="oxygen_gif", $echo=true); ?>
Forum: Fixing WordPress
In reply to: Front End Delete Post with Custom Post TypeAwesome Clicknathan. Thank you for posting the solution!
Forum: Plugins
In reply to: [Plugin: Front-end Editor] – editable_image just work for adminOk thanks for letting me know. I just created a new role capability for this specific need.
In the plugin, I changed “edit_theme_options” on the line 326 of the page other.php for my new capability.
Forum: Plugins
In reply to: [Plugin: Front-end Editor] – editable_image just work for adminYes exactly, on the front-end, the users can add a new post and in another, edit it (and edit the images that they have uploaded).
Thanks for the solution, it worked like a charm! (You were quick on this one ?? )
I’ve just notice something in my Database, when I post from the front-end, I see the article in the posts tab but at the “post_date_gmt”, it shows : 0000-00-00 00:00:00 instead of 2012-04-11 18:26:16. Also, there’s nothing in “post_name”.
Here’ the code of my page :
<div class="fee-group"> <div class="fee-edit-button">Cliquez ici pour débuter la rédaction de votre article</div> <?php if(have_posts()) : while(have_posts()) : the_post(); ?> <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>> <?php the_title('<h2 class="entry-title"><a href="' . get_permalink() . '" title="' . the_title_attribute('echo=0') . '" rel="bookmark">', '</a></h2>'); ?> <div class="entry-content"> <?php the_content(__('Continue reading', 'example')); ?> </div> </div> <?php endwhile; endif; ?> </div> </div>
Could you tell me which information to send you about the AJAX request? I see a lot of information there.
Thanks again for your help.
Hi Scribu,
I create a post from the front-end using FEE and when I save it (I see the loading and it really seems to save on the front-end) but when I go back to wp-admin, the post doesn’t appear in the post area.
Hi bradvin, I’ll be glad to test it! The website I’m developing isn’t online yet. Still working on localhost.
Hey guys, any updates about the exclude box? Thx all for your help!
Forum: Plugins
In reply to: [CSV Importer] [Plugin: CSV Importer] Featured ImageI had a situation where I needed to have all the same featured images for the posts that I was importing.
What I did is upload the image that I need with the WordPress media uploader. Then, I just copied the ID of the image. (In my situation, it was ID 17062)
In my CSV file, instead of making a “_wp_attached_file” column, I made a “_thumbnail_id” column.
I copied the function posted here by “Joy” and replaced it with this :
function create_custom_fields($post_id, $data) { global $wpdb; $many=0; foreach ($data as $k => $v) { // anything that doesn't start with csv_ is a custom field if (!preg_match('/^csv_/', $k) && $v != '') { if ($k=='_thumbnail_id') { $imageID = $wpdb->get_var("SELECT post_id FROM $wpdb->postmeta WHERE meta_key = '$k' AND meta_value = '$v'"); $wpdb->query( "UPDATE $wpdb->posts SET post_parent = '$post_id' WHERE ID = $imageID" ); add_post_meta(trim($data['csv_post_title']).' '.trim($data['csv_post_excerpt'])); if (!$many++) add_post_meta($post_id, '_thumbnail_id', '17062'); //you need to change this ID with yours } else add_post_meta($post_id, $k, $v); } } }
I’m not a programer so this function only worked for my specific case. Hope it will help you too!