Liltiger
Forum Replies Created
-
Forum: Plugins
In reply to: [WP eCommerce] Personalize Product & Upload Images to Personal LogsThanks for responding, Edward!
I’ve added text and uploaded a png file, but I still can’t see it under my Store Sales. I have these sections once clicking on the View Order Details: Billing Details, Payment Details, Item Ordered, Order Notes, and Actions
Since I’m doing manual payments, I’ve tried changing the status of the order from Received to Accepted Payment and Dispatched. The User Custom Fields still don’t show up.
Is a user supposed to receive a confirmation that the information was successfully uploaded after adding an item to a cart? Right now it just goes back to the single product page. Could this be a theme issue? The ratings & sharing buttons don’t show up either.
Thanks Again
Forum: Plugins
In reply to: [WP eCommerce] Personalize Product & Upload Images to Personal LogsMay I get a response, please?
A link to see where the issue is occurring is: https://uglyt-shirt.com/shop/ladies/ladies-perfect-weight-crew-neck/.
People can upload images and add text during the add to cart process, but I can’t see what they’ve personalized or uploaded after they check out.
It also doesn’t show up in the users’ purchase history. Is this a plugin issue or a theme issue?
Thanks Again
Forum: Hacks
In reply to: How To Hide Edit Fields From Non-AdminsHey bcworkz,
Thanks so much for pointing me into the right direction! I was able to search remove_meta_box and found a guide here: https://premium.wpmudev.org/blog/remove-wordpress-meta-boxes/
I used this in my theme’s functions.php:
function remove_listing_metaboxes() { if ( !current_user_can( 'manage_options' ) ) { remove_meta_box( 'postexcerpt','listing','normal' ); remove_meta_box( 'postcustom','listing','normal' ); } } add_action('admin_menu','remove_listing_metaboxes');
It works like a charm, but removing the featured image,
remove_meta_box( 'postimagediv','listing','normal' );
and
remove_meta_box( 'postimagediv','listing','side' );
doesn’t work. No biggies though.Thanks Again!
Forum: Plugins
In reply to: [WordPress MU Sitewide Tags Pages] Blog Page Pulls The Wrong Featured ImageThank you for your plugin, Ron, but I don’t even know why I bothered coming to this support thread – or on other sites that have written about SWT. I expected you to be as helpful as MS tech support, but was hoping for a pleasant surprise. Needless to say, I’m not pleasantly surprised.
You’ve always been condescending to others and your ‘assistance’ never goes beyond ‘do it yourself’ or ‘didn’t I already explain this above?’ I don’t even know why you bother to continue ‘supporting’ SWT. Those who can do it themselves obviously wouldn’t be coming to you for help. You may be a brilliant programmer and have a high IQ, but IMHO, you’re lacking EQ.
Forum: Plugins
In reply to: [WordPress MU Sitewide Tags Pages] Blog Page Pulls The Wrong Featured ImageHey Ron,
How is it using the post thumbnails in the first place? I’m not talking about copying photos over to the tags blog.
Isn’t there a simple solution to change out the post thumbnails to the featured image?
Thanks
Forum: Hacks
In reply to: How To Hide Edit Fields From Non-AdminsThanks for replying, bcworkz.
Where would I go to hook the ‘add_meta_boxes’? I’m actually not sure what you mean by hooking too.
I’m using the eList theme by Elegant Themes. I don’t see a pagemetabox.php file like I have on others. Would I have to create one?
I can barely comprehend PHP, so jQuery is way above my head.
I saw. Thanks so much!
Forum: Plugins
In reply to: [WordPress MU Sitewide Tags Pages] Blog Page Pulls The Wrong Featured ImageBueller?
Update:
I launched my site and checked the button that turns off indexing of the tags blog in the Sitewide Tags plugin. It trumped my seo plugin and automatically changed the admin settings of the main site so that the entire site would not be found in search engines. Not good for me since the homepage of my site houses all the aggregated posts!
I guess I’ll just have to rely on my seo plugin to no-index the duplicate posts like the OP.
If anyone wants to see the Sitewide Tags plugin in action with BuddyPress, my site is: https://streetstyleedition.com
The BuddyPress site is on it’s own subdomain here: https://fashionsociety.streetstyleedition.com/ using the Define Root Blog config.
Hope this helps people!
Hey Jeremy,
I just wanted to come back and let you know that it worked like a charm!
Thanks A Bunch! The photos look so much better now =)
Hi,
Sorry for the delay, but thanks for listening to your users! It’s very much appreciated.
Best Regards
That worked like a charm! Thanks, Jeremy.
BTW, is it possible to make it an option to choose whether the image shows up above or below the title in future updates? Or at least be able to let’s say manually insert it into the loop like your sharing buttons?
Thanks for your help again!
Hello,
Before I tried the above code, I had this and didn’t work:
if ( 'blavatar' != $image['from'] && 'gravatar' != $image['from'] ) { $size = (int) $get_image_options['avatar_size']; $post['image'] = jetpack_photon_url( $post['image'], array( 'crop' => "10,0,125,125", 'resize' => "$size,$size" ) );
get_image_options were the same as the above code too. I also tried ‘crop’ => “10,0,125,125”, ‘resize’ => “125,125”
Would I have to use the original `$get_image_options[‘avatar_size’] = 200;? Does the image I upload have to be a certain size dimension for the crop and re-sizing to work? I don’t have photon or caching on my site yet so I know that’s not an issue.
I’ve even tried to edit the thumbnail image directly after uploading, but that doesn’t change the top posts & pages images. Would there be another work around?
Oh and another thing I forgot to mention, under your network settings dashboard, the SWT settings allow for you to turn off indexing the tags blog… but I’m not sure if that prevents indexing of the entire site or just those posts… I’ll have find and see unless someone else has tried.
That could be the easiest solution if it doesn’t prevent indexing of the entire site.
Hey,
I’ve been looking a more automated solution to this, but I haven’t found anything either. It looks like your way – manually going in to noindex certain posts on the main site is the way to do it. What a bummer too since I expect to have a handful of posts each day.
I’ve checked out Yoast before and find their info very helpful, but I ended up using Ultimate SEO since it’s less confusing for me. Definitely not as pretty as Yoast, but they also have an option to directly no-index from the post AND thru the plugin settings Meta Robot Tags > Posts where it lists all of your posts together so you don’t have to go into individual posts. I don’t remember if Yoast has that, but I’m sure he will implement something similar if you ask.