emmvie
Forum Replies Created
-
Do you have a link to your blog?
Do you want only certain categories to be in the slider — or do you want the slider to appear only when certain categories are shown?
The idea must be to use the filters as described here https://www.metaslider.com/documentation/developers/ and here https://www.woothemes.com/flexslider/.
The javascript needs to go in as described here:
https://www.ads-software.com/support/topic/slide-count?replies=9The code from the above link really ought to work since I’ve changed all references from “nivo” to “flex”. Also I’ve tried making the parameter “after” instead of “afterChange” in accordance with the info in the second link mentioned above. Other than that I can’t understand what functions are different anymore for the flex slider than for the nivo slider. I’ve checked the filter definitions in the flexslider php file and the referenced functions exist for flex.
What could I be doing wrong? I get the div where the “1 of 10” should go, but only the “of” is visible. The referenced spans don’t get populated with the numbers…
My best guess is: no. Because you don’t take the data out of the database with you that way. You’d have to export-import the whole deal.
Did you try just copying the folders? What happened?
Forum: Plugins
In reply to: [Plugin: WP Responder] newsletter broadcast time is a problem?Most recent and related problem: last broadcast went out 2 whole days late even though I chose “send immediately” and wpr listed the broadcast practically right away as sent.
Do I have a time-stamp issue? A cron issue? A permissions issue with the rmdir warning?
P L E A S E help if you have any ideas for me. Thanks!
Forum: Plugins
In reply to: [Plugin: WP Responder] newsletter broadcast time is a problem?Right, I also get about 2 dozen of the same warning when I choose to “run WPR cron”…
Would really love some help on this one, anyone out there???
Forum: Plugins
In reply to: [Plugin: WP Responder] newsletter broadcast time is a problem?In the end all of the mails seem to have gone out, or at least some of them, but it took a whole day (??!!) (around 480 addresses only). Very nervewracking.
What I found is a very large number of empty directories and old sessions in the /tmp folder. Could this be indicative of a problem? It seems to be connected to the subscription form, though, actually — because sometimes there’s an server error message that comes after a subscription and before the success message for the user:
“Warning: rmdir(/tmp/4cf8b257d611a)[function.rmdir]: Directory not empty in /www/wp-content/plugins/wp-responder-email-autoresponder-and-newsletter-plugin/lib/classes/Swift/KeyCache/DiskKeyCache.php on line 507”
Solution of sorts is the plug-in “Auto-hyperlink URLs”.
Works for posts, not for example for the wysiwyg editor for WP Responder etc.Hi, thanks for the idea. But that doesn’t do it, honestly. I get this wonderful string with https://www.orf.at but it does not make a link out of it for me…
Right, in fact, I’m missing something basic (rtfm, sigh…):
“The $wp_query is called in the blog header”…
…which obviously means I need to do some reading and re-coding, and then get back to this question. Thanks incredibly in the meantime!!
honeypot instead of non-accessible captcha
Captcha’s aren’t all that easy to implement actually and above all they aren’t accessible for visually impaired people.
Try a so-called honeypot instead, it’s just a few lines of code where you test whether an invisible field is filled out (which only a spambot would do). See for example this:
(sorry, it’s in German):
https://www.openwebboard.org/Tutorials/HTML_CSS/Barrierefreie_CAPTCHAs_1.html?1286521026#votingThe php code I’m using starts on line 301 of wpresponder.php in the plugin folder:
//a visitor is trying to subscribe. if (isset($_GET['wpr-optin']) && $_GET['wpr-optin'] == 1) { # begin honeypot if ($_POST['email2'] !== "") { exit('Gotcha'); } # end honeypot require "optin.php"; exit; }
In my html template I have:
<h2>E-Mail Newsletter-Abo</h2> <form action="<?php echo $ahl_root_abs; ?>?wpr-optin=1" method="post"> <span class="wpr-subform-hidden-fields"> <input type="hidden" name="blogsubscription" value="none" /> <input type="hidden" name="newsletter" value="1" /> <input type="hidden" name="fid" value="1" /> </span> <label for="name">Name: </label> <input type="text" name="name" /> <label for="email">E-Mail: </label> <input type="text" name="email" /> <label for="email2">Hier bitte nichts eintragen sonst bekommst du eine Fehlermeldung Wiederholung E-Mail: </label> <input class="email2" type="text" name="email2" value="" /> <input type="submit" value="Abonnieren" class="btn" id="newssubmit" onmouseover="this.className='btn btnhov'" onmouseout="this.className='btn'" /> </form>
In css I have:
input.email2 { visibility: hidden; height: 1px; } label[for="email2"] { visibility: hidden; height: 1px; }
It’s not very sophisticated but it works and was genuinely easy to implement and test.
Forum: Plugins
In reply to: [Plugin: WP-Paginate] Pagination links to 404 on Archive PageAlright, so far I can make it put out 15 (an apparent maximum???) posts and the pagination links work all of a sudden, hallelujah.
I did it by commenting out the one line where the $paged variable is set:
<?php # $paged = (get_query_var('paged')) ? get_query_var('paged') : 1; $posts = query_posts("posts_per_page=5&paged=$paged"); if (have_posts()) : while (have_posts()) : the_post(); the_content(); endwhile; else: echo ("No post available"); endif; ?>
Forum: Plugins
In reply to: [Plugin: WP-Paginate] Pagination links to 404 on Archive Pageanother additional note as i continue to work on this:
my permalink settings seem to be relevant?
Numeric https://localhost/wordpress/archives/123
(as you can tell i’m developing this locally still)
Forum: Plugins
In reply to: [Plugin: WP-Paginate] Pagination links to 404 on Archive PagePS the hack at
https://www.ads-software.com/support/topic/url-conflict-between-paging-and-individual-items
doesn’t do the trickPPS, this is the code, including ‘paged’ already as many have recommended…
<?php $paged = (get_query_var('paged')) ? get_query_var('paged') : 1; $posts = query_posts("posts_per_page=5&paged=$paged"); if (have_posts()) : while (have_posts()) : the_post(); the_content(); endwhile; else: echo ("No post available"); endif; ?>
Forum: Plugins
In reply to: [Plugin: WP-Paginate] Pagination links to 404 on Archive PageI’m having the same issue. wp_paginate looks good but the urls don’t work. I’ve just successfully installed the plugin wp_paginate and it makes a beautiful listing of further posts from my blog — I show 5 excerpts of the most recent posts on index.php and below them there is now displayed: “Earlier posts: 1 2 3 4 5 >>” BUT the problem is that the link:
https://localhost/wordpress/page/2
does absolutely zero except re-display the same page with the first 5 posts.
Any ideas for me?
Thanks in advance.
emmvieForum: Plugins
In reply to: [Flutter] [Plugin: Flutter] require_once's must be edited in two filesgood g*d, if i would extract the darn thing with the paths intact, this wouldn’t happen to me.
so, nix the message, it works after all.