Mathieu Viet
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Idea Stream] "Read More" Link Not WorkingOk thanks. First a few words: I advise you to upgrade to WordPress 4.4 and WP Idea Stream 2.3.0 as soon as possible 🙂
Till then, you can fix your issue by creating a wp-idea-stream-custom.php file and putting this code in it:
https://gist.github.com/imath/74cf4c901608c2097902
Once you upgraded, you will be able to remove this fix.
Forum: Plugins
In reply to: [WP Idea Stream] "Read More" Link Not WorkingI see you are using version 4.3.1 of WordPress. This is something that should be fixed in version 2.3 of WP Idea Stream which is requriring WordPress 4.4.
The read more thing is very linked to the theme you are using, so, what i can do is:
if you are using a ! premium theme : give me the link of the theme i will test it with WP 4.4 and WP Idea Stream 2.3 and will tell you if the issue is fixed.
if you are using a premium theme : could you use a pastebin or a similar service and paste in it the html output for one of the entry where there is a read more link. It will help me to be sure upgrading would solve the issue.Forum: Plugins
In reply to: [WP Idea Stream] Auto Embedding in Idea ExcerptsThanks for your feedback.
Excerpts are truncating the content, if you wish to display the embed content, i advise you to create a
wp-idea-streamfolder inside your theme, then copy in it the templatetemplates/idea-entry.phpin this folder. And from this copied template, you can replace<?php wp_idea_stream_ideas_the_excerpt(); ?>with<?php wp_idea_stream_ideas_the_content(); ?>.NB: you’ll need to upgrade to WordPress 4.4 and WP Idea Stream 2.3.0
Forum: Plugins
In reply to: [WP Idea Stream] Hooks for Idea CategoryOk thanks a lot for your explanation, so you want to use post taxonomies within WP Idea Stream. I’m not sure it’s a good idea as the plugin is using its own taxonomies on purpose to avoid mixing posts and ideas.
So i’m sorry i think i prefer it this way. But of course you can do it using hooks, you can for instance add an action on
wp_idea_stream_initand add the ‘category’ taxonomy to thewp_idea_stream_get_post_type(). I guess you’ll also probably need to filter the form to include the regular categories in the checkboxes using thewp_idea_stream_ideas_get_category_editfilter for instance.Thanks for your interest in this plugin.
Forum: Plugins
In reply to: [WP Idea Stream] Something went wrong while trying to save your idea.Can you try with Twentyfifteen ?
Forum: Plugins
In reply to: [WP Idea Stream] IdeaStream Main Page TitleHi one reply 🙂 Breadcrumb in case people don’t use nav items.
If you want to customize this part, i advise you to use something like the snippet of code i’ve shared on this topic:
Forum: Plugins
In reply to: [WP Idea Stream] Remove Add New ButtonHi Clif,
You can do this:
function kalipekona_remove_link_from_archive_title( $title = '', $context = '' ) { if ( 'archive' === $context ) { $title = esc_html( wp_idea_stream_archive_title() ); } return $title; } add_filter( 'wp_idea_stream_reset_post_title', 'kalipekona_remove_link_from_archive_title', 10, 2 );Forum: Plugins
In reply to: [WP Idea Stream] Hooks for Idea CategoryI’m sorry, i’ve tried to google translate your topic in my language because i didn’t understand, but it did not help 🙁
Could you explain with small sentences what you are expecting ?
Forum: Plugins
In reply to: [WP Idea Stream] The user does not have the "Create the idea" in your profileOk for this topic and https://wordpress.org/support/topic/leave-a-reply-and-rate-the-idea-do-not-work?replies=1
Try using Twentyfifteen with no other plugin activated than WP Idea Stream & BuddyPress.
Just tested on my side everything seems to work fine
Forum: Plugins
In reply to: [WP Idea Stream] redirection front-end into back-end editionBecause you are the admin. Regular users are kept in the front end.
Forum: Plugins
In reply to: [WP Idea Stream] Remove SidebarThe reply to this topic will help you to achieve your goal:
https://wordpress.org/support/topic/comments-and-ratings-dont-work?replies=2#post-7702884Forum: Plugins
In reply to: [WP Idea Stream] Add idea empty pageHi,
There can be a lot of reason. First i’d try to deactivate the theme and use TwentyFifteen to see if it’s a problem with the theme. If it solves the issue and it’s a premium theme, i won’t be able to help you.
Then if the situation is still the same with TwentyFifteen, i’d deactivate the plugins one by one to check if there’s an issue with one of the other plugins you activated.
Forum: Plugins
In reply to: [WP Idea Stream] idea stream templatesHave you tried to put an ideastream.php template file at the root of your theme’s directory. By default the plugin is using the page.php file of your theme to inject its content. So you can use the ideastream.php file and put in it the markup of your page.php and eventually adapt it to your need.
Forum: Plugins
In reply to: [WP Idea Stream] Comments and Ratings don't workThe plugin is using the page.php template of your theme by default. If the page template of your theme doesn’t include a comment form/ listing it can explain it doesn’t work.
To solve this you can create an
ideastream.phptemplate within your theme copy the page.php markup of your theme and include in it the comments template tags.https://github.com/imath/wp-idea-stream/wiki/Ways-to-customize-the-plugin-from-your-theme
Forum: Plugins
In reply to: [WP Idea Stream] an ajax idea formHi,
Have you tried
wp_idea_stream_ideas_update_meta()to save a custom field
wp_idea_stream_ideas_get_meta()to get it andwp_idea_stream_ideas_delete_meta()to delete it ?