saffyre9
Forum Replies Created
-
Having the same problem on Pantheon
Forum: Plugins
In reply to: [Frontend Uploader] [Plugin: Frontend Uploader] Can't upload in IE8I’m not using multiple file uploads. This is what I’ve got for my form:
[fu-upload-form title="Upload your Photos"] [input type="text" name="name" id="ug_name" description="Your name"] [input type="file" name="photo" id="ug_photo" description="Your Photo"] [input type="submit" value="Submit"] [/fu-upload-form]
Having the same issue.
Forum: Plugins
In reply to: [Frontend Uploader] [Plugin: Frontend Uploader] Layout and collecting dataOk, thanks Rinat, I’ll keep looking!
Dawn
Forum: Plugins
In reply to: [Frontend Uploader] [Plugin: Frontend Uploader] Layout and collecting data323 is the opening of <?php for this action. 322 is the closing ?> of the previous action.
?> <?php add_action( 'fu_after_upload', 'my_fu_after_upload' );
Forum: Plugins
In reply to: [Frontend Uploader] [Plugin: Frontend Uploader] Layout and collecting dataHi Rinat,
I’ve got the closing ?> bracket, and don’t see a missing } bracket.
This is eactly what I’ve got:
<?php add_action( 'fu_after_upload', 'my_fu_after_upload' ); function my_fu_after_upload( $attachment_ids ) { // do something with freshly uploaded files // This happens on POST request, so $_POST will also be available for you foreach( $attachment_ids as $att_id ) { // Format the title $author = 'By ' . $_POST['name'][0]; $author .= ' ' . $_POST['email'][0]; // Sanitize input from user $author = sanitize_text_field( $author ); wp_update_post( array( 'ID' => $att_id, 'post_title' => $author ) ); } } ?>
Forum: Plugins
In reply to: [Frontend Uploader] [Plugin: Frontend Uploader] Layout and collecting dataHi Rinat,
I’m trying to copy the same form and I’ve added the action to my function file, but I’m getting the following error:
Parse error: syntax error, unexpected $end in /home/saffyre9/public_html/jenandjp_ca/wp-content/themes/Feather/functions.php on line 323
I’m not really familiar enough with PHP to understand where the issue is.
@bc3tech Would you be interested in sharing your fix for STC? I’m encountering the same issue with it and Google Analytics for WordPress.
Forum: Plugins
In reply to: [Contact Form 7] [Plugin: Contact Form 7] Contact forms showing in RSS feedThe site is https://bookbrothel.com/.
The plugins I’m using are:
Askimet
Edit Author Slug
FD Feedburner Plugin
Google Analytics for WordPress
More Fields
More Taxonomies
Optimize DB
Permalink Redirect
Redirection
Search & Replace
SEO Friendly Images
Sexy Bookmarks
Subscribe to Comments
Theme Test Drive
WordPress Amazon Associate
WordPress Database Backup
WordPress SEOForum: Fixing WordPress
In reply to: Weired Problem: Auto Home Page Redirection!Ahhh, thank you guys! This thread just saved my ass ??
Forum: Plugins
In reply to: [Plugin: NextGEN Gallery] Image-Browser: Changing Page-Title and Picture-LinkYafu, check out this plugin: https://mariokostelac.com/nextgen-seo/
Dawn
Check out this plugin: https://mariokostelac.com/nextgen-seo/
Forum: Plugins
In reply to: [Plugin: NextGEN Gallery] HTML Title of Gallery PageFor those who don’t want to modify the rewrite.php themselves, there is this plugin that might help: https://mariokostelac.com/nextgen-seo/
Forum: Plugins
In reply to: [Plugin: NextGEN Gallery] Image-Browser: Changing Page-Title and Picture-LinkI need help with #1 as well.
For #2 you can modify the HTML in /nextgen-gallery/view/gallery.php
Dawn