webtechideas
Forum Replies Created
-
Forum: Plugins
In reply to: [WTI Like Post] Vote or see counts on excerptsTry using the function call
GetWtiLikePost()just below the excerpt in the template file. Do let me know whether it worked or notForum: Plugins
In reply to: [WTI Like Post] WTI Like Post Pro Plugin DownloadYes, I have received a comment on the plugin page of my site. I had received another mail from contact us page yesterday. I had asked one of my friends to put a mail using the contact form and in his case it worked as well.
When I checked the log file, there is one entry for “Ghostwriter” for the comment section but no entry was found for contact us page. So did you use any other details (name and email) on the contact form?
I need to check with the Stop Spammer Registrations plugin developer to know more about the problem.
Forum: Plugins
In reply to: [WTI Like Post] WTI Like Post Pro Plugin DownloadThis is really strange. I have checked and worked fine for me. Had you used the correct captcha code? Can I know the error message that you got? In such failure cases, you can drop an email to the support mail mentioned there.
Forum: Plugins
In reply to: [WTI Like Post] Notice: Undefined variableIt should not be a problem even when you have WordPress installed on a subfolder but there is something different in your set up. It means the path to wp-config file is different. This is fine from security point of view but many don’t do this. I had tested on such folder structure and never had the problem.
Anyway a security release will come up in less than a month’s time which will take care of such scenarios. You can continue using the current version and later easily upgrade when the new version becomes available.
Forum: Plugins
In reply to: [WTI Like Post] Notice: Undefined variableWhen I checked using firebug net tab, I got warning and fatal error messages when I clicked on the thumb images. The plugin script is unable to find out the wp-config file which is required for processing the request. So probably you are not using a standard WordPress set up. If you are not familiar with using firebug, then give me some time and I will share a screenshot showing the error.
Forum: Plugins
In reply to: [WTI Like Post] Notice: Undefined variableProbably this is an issue with wamp server, I will have to check this. I assume you have added the code as I have mentioned above. Also can you please disable notice messages?
Forum: Plugins
In reply to: [WTI Like Post] Notice: Undefined variableCan you please share your site url. I want to have a look at that.
Forum: Plugins
In reply to: [WTI Like Post] Thumbs Getting Cut OffThis is due to a conflict with your theme’s style.css file. On line 1061, the image height is set to auto causing the problem.
Open the plugin css file (wti_like_post.css) line no 90 and change
height: 16pxto
height: 16px !importantThis should fix your issue.
Forum: Plugins
In reply to: [WTI Like Post] Undefined Variable: WTI_VOTED_MESSAGEOk. The same thing is discussed on another thread as well. Please check here.
Forum: Plugins
In reply to: [Stop Spammers Classic] Prevents PurchaseHere I am pasting the data from log file. I have just placed * in place of the customer name for privacy purpose. Do let me know if this helped or not and what I need to do (without disabling) to avoid such problem in future.
2013/03/31 19:06:46:76.95.38.12,*******@live.com,******,/contact-us/,Passed all
2013/03/31 19:28:40:173.0.81.1,,,/index.php?wpsc_action=gateway_notification&gateway=wpsc_merchant_paypal_standard,White List PayPal
Thanks
Forum: Plugins
In reply to: [WTI Like Post] Notice: Undefined variableOpen the plugin file wti_like_post.php in any text editor like Notepad++ and find out the function GetWtiVotedMessage.
After the line
global $wpdb;,add the following line
$wti_voted_message = '';Note:
If your site is live, then you should have NOTICE messages disabled.Forum: Plugins
In reply to: [WTI Like Post] Most popelar categoryThat’s rather a requirement not a problem. Since there can be no control over the theme used by the site, a simple list of posts is provided. Also providing the option to like/unlike here may not be appropriate in case you show the posts sorted upon like counts for a specific duration like “last 1 month”.
You can modify the function
WtiMostLikedPostsShortcodeto show the content as per your theme. The output with the like counts will best suit when you are showing the posts sorted by like counts recorded from day 1.Forum: Plugins
In reply to: [WTI Like Post] Most popelar categoryDocumentation/manual is mentioned on the Description page. You can also find the same on the plugins page on my blog.
Forum: Plugins
In reply to: [WTI Like Post] Most popelar categoryThere is shortcode available for this. Please go through the documentation. You will surely find there. In case you have any problem after referring the doc, then please let me know.
Forum: Plugins
In reply to: [WTI Like Post] Most popelar categoryStill I am not sure what you exactly need. WordPress category creation is a system process. You can later add posts to that category. But it seems you need it in the reverse manner by assigning posts to the category dynamically depending on their like counts. Sorry I don’t think this is possible.