quickfeet
Forum Replies Created
-
Forum: Plugins
In reply to: [Polylang] language selection not persistentsure : tbci.eu
Forum: Themes and Templates
In reply to: Subtitles for the menu itemsI found the solution: Appeareance -> Menu -> Screen options: check the description box. Then you will be able to set the description to the menu items.
This is a wordpress feature, not theme
Forum: Themes and Templates
In reply to: Subtitles for the menu itemsI didn’t contact them yet, my client purchased the theme with their e-mail and I don’t want to involve them in this if I don’t have to.
I thought this might be a common question. Since the sample that they provide have those subtitles, it must be possible to set them.
Forum: Plugins
In reply to: Hook in comments just before or after the "reply" buttonI think I’m gonna edit the start_el function and call
<?php wp_list_comments2();?>
Forum: Plugins
In reply to: Hook in comments just before or after the "reply" buttonHmm,
instead of
<?php wp_list_comments(); ?>
I had:
<?php wp_list_comments2();?>
Probably my theme, so I created a fucntion in function.php like in the example and called it like this:<?php wp_list_comments2('type=comment&callback=ishare_comment'); ?>
It works, but it breaks the theme, it displays the default comments, insted of the themed ones.
How can I do this and keep the themed one?
Thanks!
Forum: Plugins
In reply to: Hook in comments just before or after the "reply" buttonI’m sorry , my question wasn’t so clear:
I want a hook inside the comment list , not the comment form.
I want to display something inside the already posted comments , if that is possible.Thank you!
Forum: Fixing WordPress
In reply to: Update mysql ( small fix pls )Bah, it works, I forgot to activate the plugin.hehe
Thanks, guys!Forum: Fixing WordPress
In reply to: Redirect to index.php after new post is madealso , this is a school project so I won’t need any updates but
$location = get_bloginfo(‘url’).”/index.php”;
This worked like a charm, I wish I could give you points now lol
Thank you sir!Forum: Fixing WordPress
In reply to: Redirect to index.php after new post is madeThe app i work on works like this :
someone opens a question(contest like) and then the others try to answer or supply what he needs for points.I wanted to limit user acces to the dashboard as much as possible but i realised it’s either impossible or implies a ton of work, so i went with this compromise , but there is no need for someone to remain on the dashboard after they opened the question( customized post )
Thanks, I’ll try that and come back