Posts by Luna Laura • 189 points
11 posts
-
0
votes1
answer114
viewsQ: Facebook comment form replaces wordpress form
I want to put two comment platforms on my blog, facebook and the wordpress form itself, but when I put the code: <?php comment_form(); ?> The form is replaced by the facebook form alone and…
-
1
votes0
answers322
viewsQ: Receive notification when a facebook comment is made on wordpress
I am creating a wordpress blog and want to make facebook comments made on the post page generate a notification on the page administrator’s facebook page. On an old blog, I used the plugin "Facebook…
-
1
votes0
answers1053
viewsQ: Create a list with the latest videos from a Youtube channel with the V3 API
I have a code that takes the last videos from a channel and posts their thumbnails to run in a popup (with jquery, this part works fine). The code is this: <?php error_reporting(E_ALL); $feedURL…
-
1
votes1
answer1929
viewsQ: How to show a listing of all posts on any page
I’m wanting to make a list to get the most commented posts, but my problem is that I can’t call the right listing always, here’s the code: <ul> <?php global $query_string;…
-
1
votes2
answers256
viewsQ: Display the class of different tags from one ID each click
I want to make a code that takes the class of an ID whenever it is clicked: html <ul> <li id="alert-class" class="class-1">1</li> <li id="alert-class"…
-
1
votes0
answers161
viewsQ: List of popular posts counting comments from facebook
I’m trying to make a list of 5 items of the most commented posts on my blog, but with the comments on facebook. I replaced all the contents of the file "comments.php" of my WP (twenty Fifteen theme)…
-
2
votes1
answer439
viewsQ: List of popular posts with facebook comments
I’m trying to make a list of 5 items of the most commented posts on my blog, but with the comments on facebook. I found this code on google, but as you can see, it just captures the comments made on…
-
1
votes2
answers200
viewsA: $(Document). height() does not return the correct value
the $(Document). height() takes the right value, but I was trying to get it when the document was ready, which in case is how the code starts: $(Document). ready(Function() { Alert($(Document).…
jqueryanswered Luna Laura 189 -
5
votes2
answers200
viewsQ: $(Document). height() does not return the correct value
I’m trying to get the size $(document).height() of my site, but the value shown sometimes is different than the HTML size (in inspect element) shows. I’ve tried calling directly $("html").height(),…
jqueryasked Luna Laura 189 -
3
votes1
answer252
viewsQ: Contact form does not work
I’m having the following problems in the form I’ve assembled: The form is not sent to the email. After clicking on Ubmit, pressing to reload the page gives the conflict of "Confirm the resubmit of…
-
2
votes1
answer244
viewsQ: Create an animation effect that runs only once, after a certain bearing height
I’m trying to create an animation for a div after the scroll is higher than a value (in my case, 1100). It works to some extent, but after it goes past 1100, every time you move the scroll this…