jcarrest
Forum Replies Created
-
Forum: Plugins
In reply to: [Post Comments as bbPress Topics] Duplicate with custom fieldsHave the plugin add the post custom fields to the post it creates on the forum. I don’t know if it would be possible. I fixed it with my custom code, but it would be much easier if it was already implemented in the plugin.
Forum: Plugins
In reply to: [Post Comments as bbPress Topics] Duplicate with custom fieldsIt’s a bit strange, but I got it working like this:
function bannerinfogp(){
$idgp = get_post_meta(
get_the_ID(), ‘id_carrera’, true);
if (empty($idgp)){
$topic_title = bbp_get_topic_title();
$entry = get_page_by_title( $topic_title, OBJECT, ‘post’ );
if ( $entry ) {
$custom_field = get_post_meta( $entry->ID, ‘id_carrera’, true );
$idgp = $custom_field;
}It breaks me down a bit this way. It would be better if it doubled the custom field.
It would be more appropriate.
Forum: Plugins
In reply to: [Football Pool] Not view avatarsMy error.
IT’s GOOD!!
workingThanks. Good job
Forum: Plugins
In reply to: [Football Pool] Not view avatarsThank you.
I tried it but it didn’t work.
Maybe because it is multisite or because of “wp user avatar”.
Can you think of another way?