websta
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Share to MY blog?You may want to try this:
Forum: Fixing WordPress
In reply to: website is gonePeople will likely need more info to help. My immediate suggestion is, using your web hosting account’s file manager or via FTP, delete or rename the word fence directory which should be in: [your website’s directory] > wp-content > plugins.
Forum: Themes and Templates
In reply to: [Virtue] Trouble displaying woocommerce categories, products?Thank you, purchased the premium theme and am (trying to) installing it now.
Forum: Themes and Templates
In reply to: [Virtue] Trouble displaying woocommerce categories, products?You were right, Kadence. Updating the theme fixed the remaining column issue. Thank you very much for your help.
Very impressive, customizable theme.
One more question: We’ve spent the last 24 hours trying to get the WooCommerce “Shop” Page to display with square images. The coding on page-portfolio.php seems to call for square images (272 x 272, 370×370, etc.), but we keep getting rectangles:
Any idea what we’re doing wrong? How can we get square images? Also, can we specify 3 columns on a full-width page, or are 4 images just the way it works?
Forum: Themes and Templates
In reply to: [Virtue] Trouble displaying woocommerce categories, products?Ok, thanks. How do you suggest I add that class back?
I am not using a child theme.
I have several plugins running, but the only one I think would affect it is the Virtue Toolkit plugin?
Forum: Themes and Templates
In reply to: [Virtue] Trouble displaying woocommerce categories, products?Thanks very much for the response, Kadence. The custom CSS you offer above fixed the problem with the fourth/right column; thank you!
There is still the problem on the store page here: http://printabelle.com/store
The source code in question looks like this:
<div class=”woocommerce”>
<div id=”product_wrapper” class=”products fourcolumn clearfix”>
<li class=”product-category product first”>
<img src=”image here”…/>
<h3>A Title<mark class=”count”>(9)</mark></h3>
<li class=”product-category product”> …etc…
The custom CSS I now have is this:
a { color: #005EB6;}
.product {border:2px solid #eee !important; box-sizing: border-box !important;}
.woocommerce-ordering {display: none !important;}
.fade {display: none !important;}Any ideas?
Forum: Reviews
In reply to: [Facebook] What in God's name are they thinking?Just sign up with dlvr.it, route your RSS feed to facebook, twitter, etc. Done. Takes less than one minute (if you’re logged into your social media accounts already).
This facebook plugin is a veritable hell on earth. FLEE! FLEE FOR YOUR LIVES!
Forum: Plugins
In reply to: [Frontend Uploader] Help? "Author" not being saved?Awesome! Thank you, Rinat! That will be a very big help to us and our users.
Thank you again, Rinat!
Using PHP 5.3.23, and the plugin displays no settings to be uploaded. Nor any error messages.
Just a blank screen beneath “Select All Active Widgets” and “Un-Select All Active Widgets” buttons.
Another post suggests switching to version 1.0. Same result.
PHP version 5.3.23
MySQL version 5.1.69-cll
Architecture x86_64
Operating system linuxLooking for solution to the same problem.
Forum: Fixing WordPress
In reply to: Press this for mobile and custom post types?I’d also really like to find a working solution for “Press This” posting to custom post types.
Anyone got any ideas? I’ve tried a half dozen solutions out there (all several years old); none are working at this point.
Forum: Fixing WordPress
In reply to: How to combine RSS feeds (from same site)?It works! 88 miles per hour!
Thank you, Rev. Voodoo!
Forum: Reviews
In reply to: [Facebook] The four-line howto veils hours of fist-clenchingFigured out how best(?) to handle auto posting to facebook.
Get your rss feeds (maybe thru a Feedburner plugin, or yoursite.com/rss) sign up with dlvr.it, sending your rss to wherever you like in Facebook.
Entire setup with dlvr.it-to-Facebook literally took less than 60 seconds.
Sooooo easy. Just be logged into Facebook when you sign up.
Forum: Plugins
In reply to: [Frontend Uploader] Help? "Author" not being saved?Thanks very much, Rinat. Awesome plugin. Good luck with version 0.6!
Is there a way to include the author_name in the email to admins?
/** * Notify site administrator by email */ function _notify_admin( $result = array() ) { // Notify site admins of new upload if ( ! ( 'on' == $this->settings['notify_admin'] && $result['success'] ) ) return; // @todo It'd be nice to add the list of upload files $to = !empty( $this->settings['notification_email'] ) && filter_var( $this->settings['notification_email'], FILTER_VALIDATE_EMAIL ) ? $this->settings['notification_email'] : get_option( 'admin_email' ); $subj = __( 'New content was uploaded on your site', 'frontend-uploader' ); wp_mail( $to, $subj, $this->settings['admin_notification_text'] ); }Forum: Plugins
In reply to: [Frontend Uploader] Help? "Author" not being saved?I see there is a new version of the plugin today. π
But it did not fix my problem. π
I see the information about customizing forms. But, it does not fix the problem for me.
1. It would be best if the author was automatically registered as a user, and the post was saved to author’s name.
2. Sending the author’s name in the email to admin would be good, too.
FWIW, similar plugins send admin email that look like this:
Author : foo
Author Email : foo@foo.com
Title : The Author’s Post Title
Permalink : http://foo.com/the-authors-post-title
Edit Link : http://sfoo.com/wp-admin/post.php?action=edit&post=1234In Frontend Uploader, my emails say:
Someone uploaded a new UGC file, please moderate at: http://foo.com/wp-admin/edit.php?post_type=gallery&page=manage_frontend_gallerys_uploader
So, author is not sent in email. But author is saved in database as author_name. So I am exporting database and searching for author_name to add to posts manually. It takes a lot of time.
I think here is the email code:
/** * Notify site administrator by email */ function _notify_admin( $result = array() ) { // Notify site admins of new upload if ( ! ( 'on' == $this->settings['notify_admin'] && $result['success'] ) ) return; // @todo It'd be nice to add the list of upload files $to = !empty( $this->settings['notification_email'] ) && filter_var( $this->settings['notification_email'], FILTER_VALIDATE_EMAIL ) ? $this->settings['notification_email'] : get_option( 'admin_email' ); $subj = __( 'New content was uploaded on your site', 'frontend-uploader' ); wp_mail( $to, $subj, $this->settings['admin_notification_text'] ); }Question: Is there a way to change email code to include the post title, permalink, and author_name?
Also, how to add author’s email in Frontend Uploader form?