pelchatd62
Forum Replies Created
-
I understand perfectly. I was just asking if there was a known conflict with this other plugin. I had a problem with TablePress too but I only had to disable the “table” shortcode in that problematic plugin and it solved the problem.
Thank you for your answer. You really have a great product.
Forum: Plugins
In reply to: [The Events Calendar] list/month/day mode doesn’t work with WPMLI maybe too late to help you but maybe someone else will need it.
You can check this solution: https://wpml.org/forums/topic/tribe-event-calendar-not-changing/
I did just that. Updated WooCommerce and got no message telling me to update the database. And it still doesn’t work. I put back the old version of WooCommerce and it works. Maybe there is another way to update the database that I don’t know?
What is funny is that in the plugin descritption you have :
Core Features
Shortcode Form Creation and Contact Message Management.Something is wrong with this company: http://usabilitydynamics.com/products/wp-crm/forum/topic/wp-crm-shortcodes-tab-is-missing/
It seems it’s only available in the premium version. It’s too bad they don’t even bother answering this question. If you search online you will see people asking the same question and that there is someone answering to re-install etc. But if you click on “Premium Features” it’s written :
Shortcode Contact Forms
Create contact forms using shortcodes and keep track of messages in your dashboard. [learn more]Please visit UsabilityDynamics.com to purchase this feature.
Forum: Plugins
In reply to: [Post Connector] Using the APIThank you for the answer.
Have I known, I would have bought the PRO version yesterday. I worked hours to make that work. You should put something on your site to let people know. I was tempted to buy the PRO version but there was nothing I needed in the list of features(so I thought).
Forum: Plugins
In reply to: [Post Connector] Using the APIOK I was able to make it work like that:
$toto = new SP_Post_Link_Manager(); $my_connected_posts = $toto->get_children( "events-links", get_the_id() );There is probably something I don’t understand about classes etc. What I know is that your documentation is not perfect. The Change log mentions that you are on version 1.5.3 since August 16th but I could only find version 1.0.1.
Forum: Plugins
In reply to: [Download Monitor] Can't download, just jump to the home+1 Razi3L. I worked several hours to make a new template and formating it like the client wanted to see that it wasn’t downloading at all in the first place.
Thank you very much.
Yes I was using the French version of WordPress.
I installed your development version and the scanning part works now. I didn’t try the restore part though but it must be OK.
Thank you very much.
Same as FrenchGuru here. But even with version 0.5.2 I was getting Deploy errors on restore. I had to make my backups with mysqldump option ON.
Forgot to say that it was a new site with no pugins at all.
I forgot to mention that. The stats started showing as soon as I changed it to Classical Analytics.
I changed everything back to Universal and it still works.
Thank you very much for your prompt answer.
Thank you @lifeinthegrid for the outstanding service you offer.
Another reason to find that plugin even more amazing! 🙂
Forum: Plugins
In reply to: [Genesis Translations] Changing Excerpt Read More linkI used that piece of code. I don’t remember where I found some part of it and changed other parts.
function custom_excerpt($text) { // custom 'read more' link if (strpos($text, 'Lire plus »')) { $excerpt = str_replace('<p>', '', $text); } else { $excerpt = substr($text, 0, strrpos($text, '</p>')) . '<a href="'.get_permalink().'">Lire plus »</a></p>'; } return $excerpt; } add_filter('the_excerpt', 'custom_excerpt'); function new_excerpt_more($more) { global $post; return '… <a href="'. get_permalink($post->ID) . '">' . 'Lire plus »' . '</a>'; }