-
Search Results
-
Hey There
I want to build a custom Table for my client and i have two Challenges:
1. The first field is still white, but it should be transparent.
2. I need a color-Code for the courses of this fitness studio
For Example: Dot/Circle-Icon in the fields. Each Course should have a different coloured Dot next to it.
Under the Table I will write an overview with a legend with more informations about the Course.2b: If its not possible to put an icon with a specific color in the Fields: can I also change the different field-colors?
I need some kind of Changing Colors for each course.Thank you!
This ist the Css:
`
/*Tabelle*/
.main_color table, .main_color table tbody, .main_color table tr, .main_color table td {
background-color: transparent !important;
border: 3px solid black!important;
}/* Alternate row color */
#top .avia-table tr:nth-child(even)
{ color: black !important;
}Hi Support,
I was wondering if there was a way to use a custom template part that is tied to a custom element template.
For example, I am using Advanced Custom Fields and let’s say my custom template part looked something like the following:
<?php /** * Breaker bar * * @param string title * @param string summary */ ?> <?php $title = get_field('breaker_title'); $summary = get_field('breaker_summary'); ?> <section class="breaker"> <div class="container"> <div class="breaker-box"> <div class="breaker-content"> <h2 class="breaker-title"><?php echo $title; ?></h2> <span class="breaker-summary"><?php echo $summary; ?></span> </div> </div> </div> </section>Do you have a base file that I can put in the config-templatebuilder/avia-shortcodes/ that has something like “_get_template_part” to return the above component to where ever the custom element template (CET) was placed on a page?
I did think about creating an actual page template but that would then mean the components are hardcoded to the page, and it would be nice if the user could place that component wherever they wanted on the page.
I’m aware I can modify one of the avia-shortcodes by including it in my child theme, but they all seem to be quite large, I assume because they have all the extra customisation options for the particular component you have copied, but I wouldn’t require those (styling tab, development tab etc), I just want some code to be outputted.
Thanks
SeanHello there,
I’ve come across a PHP Snippet that I am trying to incorporate in my child theme’s functions.php file. My goal is to hide the following section when the user selects the Local Pickup option when checking out:

This is the link to the code that I found, and I’ve attached the code to this post as well.
/** * @snippet Hide Shipping Fields for Local Pickup * @how-to Get CustomizeWoo.com FREE * @sourcecode https://businessbloomer.com/?p=72660 * @author Rodolfo Melogli * @testedwith WooCommerce 3.5.7 * @donate $9 https://businessbloomer.com/bloomer-armada/ */ add_action( 'woocommerce_after_checkout_form', 'bbloomer_disable_shipping_local_pickup' ); function bbloomer_disable_shipping_local_pickup( $available_gateways ) { // Part 1: Hide shipping based on the static choice @ Cart // Note: "#customer_details .col-2" strictly depends on your theme $chosen_methods = WC()->session->get( 'chosen_shipping_methods' ); $chosen_shipping = $chosen_methods[0]; if ( 0 === strpos( $chosen_shipping, 'local_pickup' ) ) { ?> <script type="text/javascript"> jQuery('#customer_details .col-2').fadeOut(); </script> <?php } // Part 2: Hide shipping based on the dynamic choice @ Checkout // Note: "#customer_details .col-2" strictly depends on your theme ?> <script type="text/javascript"> jQuery('form.checkout').on('change','input[name^="shipping_method"]',function() { var val = jQuery( this ).val(); if (val.match("^local_pickup")) { jQuery('#customer_details .col-2').fadeOut(); } else { jQuery('#customer_details .col-2').fadeIn(); } }); </script> <?php }I’m assuming that
'#customer_details .col-2'from the included PHP snippet above needs to be changed to something likewoocommerce-shipping-destinationand"woocommerce-shipping-calculator"Any help is appreciated, thanks very much!
Hi,
there is a new question for another website (link in private content).
The application is divided into 4 fields of 1/4 each. When I activated the privacy policy, the 4th field moved to the second line. The 4th field (the Send button) should be back in the first line on the far right and then the checkbox with the note for the privacy policy below it.
Many thanks and best regards
Topic: Wishlist: Form Alert Message
Hi team
Please add this function to your next Update:
Alert message on Form when required fields not filled.
As Popup Lightbox or like CF7 Form does: on bottom of form with a little message in a box.
On darker templates no chance to see the red borders of required form fields.Millions of ENFOLD customers would appreciate this, believe me.
Thank you
SteveHi I have ACF installed and am using it to add fields to the bottom of my portfolio edit page.
I am adding ACF shortcodes to elements within the ALB.Most are working well but I have uploaded a hero image for each via an ACF upload image field. This field (at the moment) returns an Image URL (for example “https://owe.brother.design/wp-content/uploads/2022/10/3_OxfordStationComp_1120x800.jpeg”
I was hoping to then use the said URL in either a text block eg:
<img class="alignnone size-full wp-image-391" src="[acf field="field_6349785a674e0"]" alt="" width="1120" height="800" />which doesn’t work or somehow within the Media/Image element in ALB.Do you have any advice on how I can do this? Thanks in advance.
Dominic
Topic: Update on ACF support
Has there been any progress on adding ACF (Advanced Custom Fields) support, without writing php templates? It was mentioned that it was on the list of features to be added back before 4.8.
I really ned a quick way to display single listings of a custom post type with custom fields.




