inula
Forum Replies Created
-
Yes, me too.
Not the whole website but the login page backend.Forum: Plugins
In reply to: [List category posts] Title lost breaks after upgradeSorry, I wasn’t clear.
Yesss, problem solved with your dev-version.
Thanks again.Forum: Plugins
In reply to: [List category posts] Title lost breaks after upgradeThanks a lot zymeth!
Forum: Plugins
In reply to: [List category posts] Customfields name or labelGlad I could help ??
Forum: Plugins
In reply to: [List category posts] Customfields name or labelDelete following line from your custom template:
$lcp_display_output .= $this->get_custom_fields($post);
Replace for every customfield with:
$field_object = get_field_object( 'Met', $post->ID ); $lcp_display_output .= $field_object['label']; $lcp_display_output .= $field_object['value'];
Again, where Met is the name of the customfield
- This reply was modified 2 years ago by inula.
Forum: Plugins
In reply to: [List category posts] Customfields name or labelThats right. Now you have the label available you can find a way to put it where you want.
- This reply was modified 2 years ago by inula.
Forum: Plugins
In reply to: [List category posts] Customfields name or labelPut it right after:
//Custom fields: $lcp_display_output .= $this->get_custom_fields($post);
Forum: Plugins
In reply to: [List category posts] Customfields name or labelif ($field_object = get_field_object( 'Met', $post->ID )) echo $field_object['label'];
Where Met is the name of the custom field
Forum: Plugins
In reply to: [List category posts] Customfields name or labelIs your custom template working?
I read here that you should create a folder named list-category-posts under wp-content/themes/your-theme-folder (not in your child-theme as I did).Forum: Plugins
In reply to: [List category posts] Customfields name or labelI think you can solve this bij making a custom-template. You have to put such a template in your childtheme-map in a submap called ‘list-category-posts’.
Copy the default-template in the custom-template (you can find the default-template in the plugin-editor: list-category-posts/templates/default.php) and make some changes like in my question.
On your page you put: [catlist name=”xxxxx” template=yyyyy]**yyyyy is the name of your custom template
Forum: Plugins
In reply to: [List category posts] Customfields name or labelI did not use this code. Just made sure the fieldname was the label I wanted.
Forum: Plugins
In reply to: [List category posts] Customfields name or labelI’m using the default (classic) WP editor.
So in the backend I see the fieldlabel. In frontend I see the fieldname.Ofcourse I can use this in my template:
$field_object = get_field_object( 'Met', $post->ID ); echo $field_object['label'];
But I would prefer to get the label with the catlist-command.
Forum: Plugins
In reply to: [Widgetize Pages Light] 404 on 7.2Same here (update to 2.7)
ThanksForum: Themes and Templates
In reply to: [GeneratePress] Back to top anchor link move very slowHi Tom,
Same problem here.
The snippet (I have put it in functions.php) didn’t solve the problem.Can you maybe look at it again?
Thanks,
InulaForum: Plugins
In reply to: [Payment Gateway using Mollie for Easy Digital Downloads] Fatale fout in EDDHallo Sander,
Supersnel opgelost!
Dankjewel.