Hello friends,
could you help me out with a code-snippet to add an additional link like I did in this screenshot in the form that is used to add new places / businesses?
For now I hardcoded it into the following file:
wp-content/plugins/geodir_payment_manager/gedir_payment_functions.php
in line number 3223:
I add the code and some additional lines just so you can see where I mean
echo '<div class="geodir_price_package_row geodir_form_row clearfix ">';
if (isset($_REQUEST['package_id']) || (!isset($_REQUEST['pid']) || $_REQUEST['pid'] == '')) {
// G2G Anpassung: 6.1.2.1 FORMS - gedir_payment_functions.php Anpassung A: Link zu Preise Seite einbinden
// echo '<h5>'.SELECT_PACKAGE_TEXT.'</h5>';
echo '<h5>'.SELECT_PACKAGE_TEXT.'<span class="preislisten-link"><a href="/preise" target="_blank" title="Hochzeit Premium Preispakete"> (Funktionen vergleichen)</a></span></h5>';
foreach($package_list_info as $pkg) {
$post_pkg_link = '';
$alive_days = ($pkg->days) ? $pkg->days : 'unlimited';
Thank you in advance!