adcsi
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Booking calendar/form on websiteHi,
We use Appointment hour booking:
https://apphourbooking.dwbooster.com/It has a free and a paid version.
Forum: Plugins
In reply to: [Disable XML-RPC-API] .htaccess is writableThank you for the information.
So this means it’s intentional and there’s nothing to worry about.Forum: Themes and Templates
In reply to: [Spintech] Info SectionI found out.
in this file:
public_html/wp-content/plugins/burger-companion/inc/spintech/sections/section-info.php
after this line:
$icon = ! empty( $info_item->icon_value) ? apply_filters( 'spintech_translate_single_string', $info_item->icon_value,'info section' ) : '';
add this line:
$spintech_info_link = ! empty( $info_item->link ) ? apply_filters( 'spintech_translate_single_string', $info_item->link, 'info section' ) : '';
and substitute this line at the bottom:
<h6 class="title"><a href="javascript:void(0)"><?php echo esc_html( $spintech_info_title ); ?></a></h6>
with this line:
<h6 class="title"><a href="<?php echo esc_url($spintech_info_link); ?>"><?php echo esc_html($spintech_info_title); ?></a></h6>
And in this file:
burger-companion/inc/spintech/features/spintech-info.php
after this line
'customizer_repeater_text_control' => true,
add this line
'customizer_repeater_link_control' => true,
and in your customizer it will show up
- This reply was modified 3 years, 11 months ago by adcsi.
Forum: Themes and Templates
In reply to: [Spintech] Info SectionFor me, this still doesn’t work.
Why did you mark it as resolved?edit:
By editingpublic_html/wp-content/plugins/burger-companion/inc/spintech/sections/section-info.php
you can modify that link. But all texts point to a common link. This is not goodedit:
I think this is an error in the Burger companion plugin, not the theme.Features Slider Section Info Section Service Section Call To Action Section And many more.