Rob Landry
Forum Replies Created
-
Forum: Plugins
In reply to: [Sell My Plugin] When I rated your plugin on the settings page..For the paid plugin, please move comments to https://feedback.landry.me/ and I will address the issues there.
Rob
Forum: Plugins
In reply to: [Sell My Plugin] Excessive quoting of single and double quotes in Email BodyFor the paid plugin, please move comments to https://feedback.landry.me/ and I will address the issues there.
Rob
Forum: Plugins
In reply to: [Sell My Plugin] /extend/plugins/ not working.For the paid plugin, please move comments to https://feedback.landry.me/ and I will address the issues there.
Rob
Forum: Themes and Templates
In reply to: [D5 COLORFUL] Page function stopped workingIn functions.php change line 67 to read:
return '… '.colorful_continue_reading_link($more);
After line 78:
add_filter( 'get_the_excerpt', 'colorful_custom_excerpt_more' );
Add this:
function colorful_continue_reading_link($more) { global $post; return '<p class="read-more"><a href="'. get_permalink($post->ID) . '">Read the rest of this page ?</a></p>';
That should fix it up. Also if you want to make all posts excerpts without adding the more tag, you can go to index.php and change line 17 to read:
<?php the_excerpt('<p class="read-more">Read the rest of this page ?</p>'); ?>
Forum: Themes and Templates
In reply to: [D5 COLORFUL] Page function stopped workingI see the issue also. I will provide a fix once I find one.
Forum: Plugins
In reply to: [Sell My Plugin] Random folder nameReplace the function with this one. I am just looking for a way to make it as secure as possible without the ability to guess the name.
I have never run into this issue but with a bit of digging, i see that php crypt() does include these characters.
in sell-my-plugin.php replace with this.
function gen_secret_dir() { //set the random id length $random_id_length = 10; //generate a random id encrypt it and store it in $rnd_id $rnd_id = crypt(uniqid(rand(),1)); //to remove any slashes that might have come $rnd_id = strip_tags(stripslashes($rnd_id)); //Removing any . or / and reversing the string $rnd_id = str_replace(".","",$rnd_id); $rnd_id = strrev(str_replace("/","",$rnd_id)); //finally I take the first 10 characters from the $rnd_id $rnd_id = substr($rnd_id,0,$random_id_length); return $rnd_id; } # End Secret Dir
Let me know if there are any other issues.
Forum: Plugins
In reply to: [Sell My Plugin] Parse error: syntax error, unexpected T_PAAMAYIM_NEKUDOTAYIMi see the code and am not seeing what would cause the issue. I am looking for a fix. A new version in on the way, but I have to track down this before release.
Forum: Everything else WordPress
In reply to: Websites to sell pluginshow about selling your plugin from your site using my plugin. you can check out the free version at https://www.www.ads-software.com/extend/plugins/sell-my-plugin/ and the paid version at https://www.landry.me/extend/plugins/sell-my-plugin/
I will be giving away several of the paid versions to test out for free.
I would also be interested in knowing more specifics about your needs as I would be willing to work on a plugin for you.
Forum: Everything else WordPress
In reply to: Selling Plugins Themesi have created a plugin to do this. you can try the free version at https://www.ads-software.com/extend/plugins/sell-my-plugin/ and if you are one of the few lucky people the pro version is being given away at https://www.landry.me/extend/plugins/sell-my-plugin/