Make carlos
Forum Replies Created
-
Forum: Plugins
In reply to: [WPS Bookings for WooCommerce] Price showing 0.00 in cartMore details are here: https://prnt.sc/_aBJsCEZprbn
Forum: Themes and Templates
In reply to: [Blocksy] How to add addtional elements in header ?Hi
Thanks, is there any hook or filter available by your theme to add additional HTML block? as one of block already used for top mini bar.
Please advice.Hi Stanislav
Thank you so much for your support! I had actually already made the changes as you suggested, but I realized I made a small mistake when updating the values in the database — I forgot to wrap the SKU in quotes likesku = '{$sku}', which is why it wasn’t being inserted. It’s all working fine now.Now I’m checking how the SKU values appear in the cart, checkout, etc. I’ll follow up if I need help displaying them there. Please check attached screenshots.
https://prnt.sc/8CuMW12kvDUn
https://prnt.sc/jM7__J3tDnwhUpdated:
I have checked your code and added new options called Sku:
https://prnt.sc/G1yoWEDhs24C
But where you’re saving i mean in which function you’re saving those data so i can add mine custom option there.
Please advice.<?php elseif ($option['type'] == 'drop_down'): ?>
<select name="pofw_option[<?php echo $id; ?>]" id="pofw_option_<?php echo $id; ?>" class="pofw-option">
<option value=""><?php echo esc_html__('-- please select --', 'product-options-for-woocommerce') ?></option>
<?php foreach($option['values'] as $vid => $value): ?>
<option value="<?php echo $vid; ?>"><?php echo htmlspecialchars($value['title']) .' '. $this->formatPrice($value['price']); ?></option>
<?php endforeach; ?>
</select>I have checked plugin code and you did like this way, I can easily remove from here but it will create and issues when you update your plugin.
is there any hook is available to modify without touching your plugin file ?Perfect it’s working fine now. but i do have one more question. How do i disable price to show in dropdown ? Please check this screenshot
https://prnt.sc/lAL0gY1hs3ht
Thanks
MakeForum: Themes and Templates
In reply to: [Blocksy] Starter site tab not showingHi
Okay but in fresh wordpress installation getting this: Just loading but not showing anything, i see errors in console.
https://prnt.sc/W9Iri4S7L7eTForum: Plugins
In reply to: [Loginizer] Verifying you are human. This may take a few secondsYes its coming from cloudfare
Forum: Plugins
In reply to: [Loginizer] Verifying you are human. This may take a few secondsHi
Yeah you’re right, may be coming from the server side ?
https://prnt.sc/IAzK8MiBFBoRI’ve identified a conflict between Pro Elements and your plugin. When I disable Pro Elements, your plugin functions correctly. However, if I deactivate Elements plugin, the entire site breaks.
Could you please investigate this conflict and let me know if there’s a fix or workaround available?
is there any hooks is available so it should change default ASC to DESC?
Please adviceCan I have hours instead or in additon to dates? Is it possible to select time?
Easy Booking is only usable for dates selection.
A solution consists in having a variable product with different time slots as variations. For example, you can have a “9:00” and a “13:00” variation. But keep in mind that customers will have to select the variation (time) first and then the date, so it’s not an ideal solution.
So that means house based is not working and not available right ?Forum: Plugins
In reply to: [Qi Addons For Elementor] Alt tag missing<?php
if ( has_post_thumbnail() ) { ?>
<div class="qodef-e-media-image">
<a itemprop="url" href="<?php the_permalink(); ?>">
<?php
// phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
echo qi_addons_for_elementor_get_post_image( get_the_ID(), $images_proportion, intval( $custom_image_width ), intval( $custom_image_height ) );
?>
</a>
<?php
// Hook to include additional content after blog post featured image.
do_action( 'qi_addons_for_elementor_action_after_post_thumbnail_image' );
?>
</div>
<?php } ?>I have just copied your image.php code for better idea so you can manage this stuff in your upcoming updates.
Forum: Themes and Templates
In reply to: [Blocksy] Child theme style not calling why ?Hi,
I understand, but the approach you suggested isn’t quite right. Since we’re using a child theme, the correct way to handle custom CSS or JS is by adding them directly to the child theme files. This way, our changes won’t be lost during parent theme updates.I’m not sure why your setup isn’t loading the child theme’s
style.cssproperly, but ideally, custom styles should go there. Using a plugin for CSS or adding styles via the Customizer isn’t the best practice — especially for maintainability and performance.- This reply was modified 11 months, 3 weeks ago by Make carlos.
Forum: Plugins
In reply to: [Google for WooCommerce] All products are not adding in googleHi @shahzeenfarooq
Thanks for the detail explanation, let me check that and will get back to you.Thanks