peoniesforspring1
Forum Replies Created
-
Update: the team has resolved the issue. I’m super impressed in less than a week they created a new version of the plugin with the changes needed. As well as helped me a css code to make a sentence appear on a new line. Thank you guys!
hi,
I have messaged you
Appreciate your response- in the meantime what code can I use under ‘additional css’?
well darn- this is what I was after and respectfully kind of a deal breaker in my search for a plugin. I have seen shops without the “name your price” display on shop page and can send an example. If not, what code can I use to hide it?
- This reply was modified 9 months, 1 week ago by peoniesforspring1.
Hi,
I have done what you said.
- This hid the price. However, I want to hide the red box from the shop page. I just want the button to show. See scrnshot: https://prnt.sc/4SUdlzijyPM_
- The buttons are stuck together how would I space them out?
Hi,
Thanks for your response. I’ve semi figured out the button situation with this code:
add_filter( ‘woocommerce_loop_add_to_cart_link’, ‘custom_product_links’ );
function custom_product_links( $link ) {
global $product;// Check if the product is of a certain type or has specific attributes if ( $product->is_type( 'simple' ) && $product->get_price() === '' ) { // Display "Choose a Price" button for products with no price echo '<form action="' . esc_url( $product->get_permalink() ) . '" method="get">'; echo '<button type="submit" class="button choose_price_button">' . __('Choose a Price', 'woocommerce') . '</button>'; echo '</form>'; } else { // Display "View Product" button for other products echo '<form action="' . esc_url( $product->get_permalink() ) . '" method="get">'; echo '<button type="submit" class="button view_product_button">' . __('View Product', 'woocommerce') . '</button>'; echo '</form>'; }
}
- However, the price of the product needs to be 0. And if people want to donate a higher amount they can. Right not there is no ‘add to cart’ on product page bc I’m assuming the price is 0. How do you work around that?
- I also don’t want any price to show up on the shop page, just my woo commerce button.
Forum: Plugins
In reply to: [WooCommerce] add woocommerce as subdomain or subfolderThanks for your response
Forum: Plugins
In reply to: [WooCommerce] add woocommerce as subdomain or subfolderHow much minimum hosting space is needed for a subfolder woocommerce to make it run smoothly with no speed issues? Funny, while subfolder seems to be the way to go and for which I had a tendency to gravitate towards the reality is different. I checked and 9/10 blogs in my niche (crafts) use subdomain shops. So I’m thinking I’m missing something
Forum: Plugins
In reply to: [Media Library Folders] Multiple copies of different sizes in folderGotcha- thanks
Forum: Plugins
In reply to: [Media Library Folders] Multiple copies of different sizes in folderThank you, it’s good to know creating several image sizes is normal. I wanted to also ask about deleting a folder in media library folder. It takes a long time to load then I get timeout error when I try to delete. I thought it was bc I need to manually delete the files inside the folder to delete before deleting the folder. Did this and then went to right click on the left panel to delete folder and it’s not working. I have sent screenshot to you
Forum: Plugins
In reply to: [Media Library Folders] Multiple copies of different sizes in folderBy uploads folder, you mean file manager via hosting?
Added a new image with media library folders, it shows up as one in that folder. But five versions in my file manager
Forum: Plugins
In reply to: [Media Library Folders] Multiple copies of different sizes in folderThanks for your response. I have sent the information.
Regarding your last par. you mention they will remain: is this in both wp media AND site file manager?
Forum: Plugins
In reply to: [Media Library Folders] Multiple copies of different sizes in folder2. Also if I add photos to a new folder in ‘media library folder’ will it also appear in the month folder (so double added)?
3. What happens if I decide to deactivate or delete this plugin later on, what happens to the images?
Forum: Everything else WordPress
In reply to: Gallery Captions TextForum: Fixing WordPress
In reply to: No longer save any changes after updateThank you so much for posting this! The same was happening to me. I was super frustrated after updating to the new wordpress. My web host wanted to charge me a fee to downgrade the wp version. It was the editorskit plugin- I ended up updating. Cheers
- This reply was modified 1 year, 7 months ago by peoniesforspring1.