Forum Replies Created
-
AuthorPosts
-
ramona
ParticipantYou mean The captcha site explains all the things you need to place a captca form.
Because I thought all we have to do this: WP eStore Settings -> AddOn Settings -> reCAPTCHA Settings. Which file I have to modify?
ramona
ParticipantFor me reCAPTCHA does not work with manual checkout. So I had spam orders. I submitted everything as you described: WP eStore Settings -> AddOn Settings -> reCAPTCHA Settings
I use eStore 7.4.1.
Thank you in advance.
ramona
ParticipantThank you.
ramona
ParticipantI’m also interested in an individual expiry date for some members. I want to prevent setting up too many levels for the same access. Maybe you have changed something meanwhile.
Example: membership level ABC => no expiry date, have access to page “Videos”.
Some members in this level should have a test period first.
ramona
ParticipantThank you. Woocommerce has a gateway => [https://de.wordpress.org/plugins/paydirekt/].
ramona
ParticipantThank you.
ramona
ParticipantI don’t get the quantity in the same line as the amount. See [http://www.tendency-magazin.com/shop/]. Do you have a hint? Tried out sth. with Firebug, no result.
September 16, 2014 at 7:50 am in reply to: style eMember "read more" link correctly for protected posts #65179ramona
ParticipantSolution was more than tricky:
a > span.read-more:after {
content: “”;
}
define(“EMEMBER_MORE_LINK”,”<span class=”read-more”>weiterlesen …</span>”);
ramona
ParticipantI use IE 11, but the styling for the more links of eMember protected posts are different from those in FF:
e. g. [http://www.hapkemedia.com/blog/]
What can I do?
September 4, 2014 at 7:37 am in reply to: style eMember "read more" link correctly for protected posts #65178ramona
ParticipantGreat, it works. I need not define :after.
September 1, 2014 at 6:53 pm in reply to: style eMember "read more" link correctly for protected posts #65176ramona
ParticipantIf have implemented it:
define("EMEMBER_MORE_LINK","<span class='read-more'>Continue reading</span>");
But now another problem occurs, as you can see here:
[http://www.hapkemedia.com/kategorie/internet/]
Some of the more links are displayed twice.
I cannot find the error. When I delete the span, the more link is not styled well but is displayed one time.
ramona
ParticipantA fellow of mine has solved it with an entry in the child theme’s function.php:
add_action( 'xtreme_add_script', 'tc_add_jquery_parts' );</p>
<p>function tc_add_jquery_parts() { ?></p>
<p> // Emember fanc login<br />
$('.emember_fancy_login_link').click(<br />
function(e) {<br />
var targetId = $(e.target).addClass('emember_activeLink').attr('id');<br />
var alreadyOpened = $('#marker');<br />
var menu = $('#emember_signin_menu');<br />
var offset = $(e.target).offset();<br />
if (!alreadyOpened.html()) {<br />
alreadyOpened.html(targetId);<br />
menu.css({'left': offset.left + 'px', 'top': (offset.top + 20) + 'px'}).show('slow');<br />
}<br />
else if (targetId != alreadyOpened.html()) {<br />
alreadyOpened.html(targetId);<br />
menu.hide().css({'left': offset.left + 'px', 'top': (offset.top + 20) + 'px'}).show('slow');<br />
} else if (targetId == alreadyOpened.html()) {<br />
$(e.target).removeClass('emember_activeLink');<br />
alreadyOpened.html("");<br />
menu.hide('slow');<br />
}<br />
}<br />
);<br />
<?php<br />
}<br />
Look at
$(document).ready(function(){ramona
ParticipantPlease can you give me an exact example for an error on my website (if possible)? I’m not familiar with JS.
August 15, 2014 at 7:44 am in reply to: Protect download link and hide URL within on a membership page #64910ramona
ParticipantThank you.
ramona
ParticipantYes, thank you, always great support here.
-
AuthorPosts