danial
Forum Replies Created
-
i found a new solution for this error, Set the date and time with wordpress time and date in customise option[Customizing ? Theme Options ? Header Options]. it will be fixed.
Problem is that when a person want “date and time display time” on “Theme Default Setting” it will show errors, but when select “From WordPress Setting” there is no error.yes it was an older version but due to override file its working
ok my issue was solved when notes are not displaying on entry detail page
/wp-content/themes/Scenic-Rim-Bride/connections-templates/profile/card-single.php (child-theme-file-override path)… if your notes are not showing then paste this
The function you would add is:
<?php
$notes = $entry->getNotes();
if ( 0 < strlen( $notes ) ) {$entry->getNotesBlock(
array(
‘before’ => ‘<h4>’ . esc_html__( ‘Notes’, ‘connections’ ) . ‘</h4>’ . PHP_EOL,
‘after’ => ‘<div class=”cn-clear”></div>’,
)
);}
?>Forum: Plugins
In reply to: [Connections Business Directory] card.php cannot override in child-themeyes thankyou
its workingForum: Plugins
In reply to: [Connections Business Directory] card.php cannot override in child-themei have also tried that but without activating template overriding can not work on Divi child-theme?
is there is any hook or filter which i can use to override card.phpForum: Plugins
In reply to: [Connections Business Directory] card.php cannot override in child-themei also mentioned that without activating template if i can activate template it can be change my website layout, can i override file without activating the template??
when i activate template it will work.
and can i over ride card.php in child theme- This reply was modified 4 years, 2 months ago by danial.
Forum: Plugins
In reply to: [Connections Business Directory] card.php cannot override in child-themei want to override card.php in child-theme
how i can override ??thankyou for replay
you are right it was due to our custom code.
Its solve now thankyoui have also facing this issue, i have change my laguage as natives now there is nothing showning
Forum: Plugins
In reply to: [Comments - wpDiscuz] Shortcode for wpdiscuzi have a best slotion for this.if you want multiple comment boxes of wp-discuz on one page so copy this short code with given hook in functions.php it will work on all pages.
function my_wpdiscuz_shortcode() {
if (file_exists(ABSPATH . ‘wp-content/plugins/wpdiscuz/templates/comment/comment-form.php’)) {
ob_start();
include_once ABSPATH . ‘wp-content/plugins/wpdiscuz/templates/comment/comment-form.php’;
return ob_get_clean();
}
}
add_shortcode(‘wpdiscuz_comments’, ‘my_wpdiscuz_shortcode’);add_action(‘jnews_single_post_end’,’discuzz’);
function discuzz()
{echo do_shortcode(“[wpdiscuz_comments]”);
}