Lock-N-Load
Forum Replies Created
-
Forum: Plugins
In reply to: [Captcha] Validating code on custom form?“you should add where you have the fields checking of the existing form.”
what does that even mean? it would be a lot easier to answer questions more clearly maybe with examples or more detail instead of having to have 5,6,7 posts to make it clear
Forum: Plugins
In reply to: [Captcha] Doesn't work on custom form“you should add where you have the fields checking of the existing form.”
what does that even mean? so unclear.
Forum: Reviews
In reply to: [Captcha] hard to setup on custom forms – zero support responsesI sent you a support request, #65, from your website today. Please help. Thanks!
SOLVED IT
I was linking to /sitemap and not /Sitemap
my bad
Forum: Plugins
In reply to: [WP Realtime Sitemap] Shortcodes not workingsolved my issues
Forum: Plugins
In reply to: [Twitter Widget Pro] I want to remove the number of followers boxthanks.. sorry I missed those threads
Forum: Plugins
In reply to: [Captcha] Doesn't work on custom formApparently no one knows and the developers never respond so I think we are just SOL as I, and a few others, have the same problem. You posted a month ago and got.. zero response. Horrible support.
Forum: Plugins
In reply to: [Twitter Widget Pro] I want to remove the number of followers boxIt seems the code at play here for that “follower count display is” box is
show_count=true or data-show-count=true
I see neither of these variables in the widgets editable code.Now I did see, on line 818
private function _getFeedUrl( $widgetOptions, $type = 'json', $count = true ) {
and so I set $count = false which did not work and I would think it should have given this line of comment above that at line 815 are
@param bool[optional] $count - If true, it adds the count parameter to the URL
Forum: Plugins
In reply to: [Twitter Widget Pro] I want to remove the number of followers boxI figured another way you could do this using this Twitter dev page https://dev.twitter.com/docs/follow-button#followers-count-display
You “could” turn the Follow button off in the widget as that is a setting you can do in this widget and then you could add another widget of just script code below this widget and use the iFrame script code and style it how you wish. That way, the follow button would be below this widget styled any way you like.
Forum: Plugins
In reply to: [Captcha] Validating code on custom form?Does not seem like these guys come around much to offer support. I have tried email, their discussions on their website, this forum and zero response. Weak.
Forum: Plugins
In reply to: [Twitter Widget Pro] I want to remove the number of followers boxI ended up just recoding the margins of the footer column that hold this widget so that the annoying “followers” number box does not run over into the next footer item but we still get to keep the “follow me” button.
That # box really needs to be a seperate on/off item from the follow me button.
And what is funny, look at the bottom of this page.. see the very same “Follow @wordpress” button? But yet it has no # box to it’s right. That is the same button used in this widget and yet somehow, down below, the # box is not showing. Proof it can be done.
Forum: Plugins
In reply to: [Twitter Widget Pro] I want to remove the number of followers boxYeah, if it is in an iframe, and both the follow button and likes # box are in it, there is no immediate fix then one could hack with code like the above attempted CSS tactic since we cannot get acces to the iframe contents as the setting in the plugin likely just hides the iframe.
This really should be a part of the plugin. My reason for wanting it alone is a valid one, but another valid one is what if people have so few followers, it might be embarrassing to have a little box floating there that says “5”.
Forum: Plugins
In reply to: [Twitter Widget Pro] I want to remove the number of followers boxI attempted to put it into the php file wp-twitter-widget.php
<style type=”text/css”>
.count-ready .count-o {
visibility: hidden;
}
</style>but it did not hide that box. I also put it into the main themes style sheet, it idid not either. this kind of tells me, those styles are not related to this and even looking at the code of the plugin, I don’t even see these.
Not sure where you even found that the those are the styles associated with that box? Viewing the source and code does not indicate that.
Forum: Plugins
In reply to: [Twitter Widget Pro] Display nuymber of followersBUT, can you leave the Follow Link but remove the number of followers box? My clients user name is long, and with that button/link + the follower numbers, it actually is to wide and cuts off some of the follower numbers so we want to just remove that. I suspect there is some way, at the code level, to edit the plugin.
anyone?
Forum: Plugins
In reply to: [Captcha] Validating code on custom form?I have the exact same issue as siichan. I can integrate the captcha code just fine into the custom form page. Shows up perfect. BUT, I tried putting the code suggested in both the form_processor.php page that processes the form and in the actual forms page itself (as these are 2 different pages). Neither worked. The captcha field is blown off and not even checked, you could put nothing, something, anything and it blows off the check.
It would seem code needs to be in the actual form page and NOT the external php form processor page as if it is in the external php form processor page, you have already submitted the data to the php form processor page so it is to late to do the check. But like I said, putting the code in the form page did not work either.
Any help?