VoN
Forum Replies Created
-
Thank you. I found this on your WClover forum and tried it but for some odd reason, this code doesn’t work.
Kindly check this image out to see it. I underlined it in blue. https://imgur.com/IN43iiI
Any help with this would be appreciated
Any help with this would be appreciated.
The url link will only display if a link was provided while creating the portfolio item.
The Portfolio Layout 1 and 2 comes with both the Image PopUp and the Url link if a link was specified of course.
But the Isotope comes with just the Image PopUp without the URL link.
I need both to be displayed.
This worked. Thank you. ❤️
I’ve tried adding this code snippet via the Code Snippet plugin but for some reason, it didn’t work
function wcfm_custom_product_title_type( $general_fields, $product_id, $product_type ) { $product_title_options = array( "" => "-- Choose Title --", "Dollar to Naira" => "Dollar to Naira", "Pounds to Naira" => "Pounds to Naira", "Euros to Naira" => "Euros to Naira", "Yen to Naira" => "Yen to Naira" ); if( isset( $general_fields['title'] ) ) { $general_fields['title']['type'] = 'select'; $general_fields['title']['class'] = 'wcfm-select wcfm_ele wcfm_product_title wcfm_full_ele simple variable external grouped booking'; $general_fields['title']['options'] = $product_title_options; } return $general_fields; } add_filter( 'wcfm_product_manage_fields_general', 'wcfm_custom_product_title_type', 50, 3 );Any help would be appreciated