AWKampen
Forum Replies Created
-
Hi there,
Just a quick reminder, because once again I had to manually alter line 168 to get the target option visible.
I do hope you will consider correcting this for the next version.
Still loving this plugin though! 😀Hello again,
Just installed another update for your wonderful plugin, but unfortunately the wrong piece of code has still not been rectified.
It’s a bit of a hassle to keep changing this manually after every update.
Please look into this. It’s a significant update to this fantastic plugin!Thank you for all the time you took to look into my problem. In the end the problem was some kind of setting on the server. My hosting managed to figure this out.
Also thank you for suggesting an alternative, free plugin on my site. Everything now works as it should!Hi there,
The site in question is currently still under construction. I am willing to give you access to it though. How can we do that savely?
I have tried all four available settings (multiple times), but to no avail…
Yeah, that is the first thing I did and the reason for installing WP Mail SMTP. I just don’t understand, honestly. WP Mail SMTP can send me test e-mails, but this plugin doesn’t.
Thank you for responding!
I got it to work now, thanks!
I didn’t copy the key- prefix of the API key and within mailgun I hadn’t made any authorized recipients.
Hello again,
You have just released a new version of your wonderful plugin. Great!
Unfortunately you didn’t incorporate my earlier suggestion. I had to replace the faulty class again by hand, to be able to see the ‘open new tab’ option again.
You probably overlooked it. No worries!
The code in question can now be found on line 168.
Please incorporate this rectification, because it makes the application so much more powerful.Keep up the good work and thanks again for this fantastic plugin!
- This reply was modified 8 years, 4 months ago by AWKampen.
Forum: Plugins
In reply to: [Post Slider] Plugin BrokenHi, I just bought your plug-in, but boy… there’s quite a few problems with it.
– First of all: In front of every image, it showed the ID of the post.
– Second: The caroussel doesn’t work. It just isn’t there.
– Third: It’s supposed to slide, right? It doesn’t slide. It just shows the different posts underneath eachother.
This plug-in appears to be seriously broken in quite a few ways!A refund would be appreciated!
Order ID: WPS160530-9895-95156
Forum: Plugins
In reply to: [Adminimize] 1.10.0 It's not work any moreThat did it for me!
After replacing the plug-in, I didn’t have to do a thing.
It reverted to the state is was in before.Thank you very much!
Forum: Plugins
In reply to: [Adminimize] 1.10.0 It's not work any moreI have just removed 1.10.0 and replaced it with 1.9.2 and all my problems went away.
The problem really is in the update!Forum: Plugins
In reply to: [Adminimize] 1.10.0 It's not work any moreI’m having the exact same problem on two sites on which I use this otherwise great plugin.
I have not changed anything else on my site. All I did was update this plugin.
Upon checking my settings, everything seems to be well, but it simply doesn’t do what it is supposed to do.I haven’t yet tried putting back an earlier version, but I was hoping I won’t have to.
Quite a few items that were previously hidden in my admin-menu, have now returned, despite the fact that I clearly marked them within the settings!
Forum: Hacks
In reply to: Restrict categories to 1 level onlyWow, this is way over my head, I’m afraid.
But, I’ll try to figure out what that pre_insert_term filter is and how it works.
I’ll get back to it!Forum: Fixing WordPress
In reply to: One comment per page in foreach loopWell, I couldn’t figure it out, but my brother, who is REALLY GOOD at PHP did figure it out. He himself doesn’t consider this the best of solution, but hey, it works. Maybe a quick-fix of which he isn’t proud, but I am saved! 😉 He was even so kind as to comment his work. I hope someone else can use this as well!
<?php $args=array( 'author_email' => '', 'ID' => '', 'karma' => '', 'number' => 5, 'offset' => '', 'orderby' => 'comment_date_gmt', 'order' => 'DESC', 'parent' => '', 'post_id' => '', 'post_author' => '', 'post_name' => '', 'post_parent' => '0', 'post_status' => 'publish', 'post_type' => 'page', 'posts_per_page' => 1, 'status' => 'approve', 'type' => '', 'user_id' => '', 'search' => '', 'count' => false, 'group' => 'post_id' ); $comments = get_comments($args); // Due to wordpress not having a common functionality, we create a new list of comments manually $filteredComments = array(); // Posts we already have a comment for $filteredUsedPosts = array(); // Amount of comments $filteredCommentLimit = 5; // Loop through all comments foreach($comments as $comment) { // Have we reached our amount of coments, then weŕe finished if (count($filteredComments) < $filteredCommentLimit){ // Do we already have comment for this post? if (!in_array($comment->comment_post_ID, $filteredUsedPosts)){ // We add the POST ID to the list of used POST IDs $filteredUsedPosts[] = $comment->comment_post_ID; // We add our comment to the display comments list $filteredComments[] = $comment; } } } foreach($filteredComments as $comment) : ?> <div style="border: 0px solid #000000; height: 1%; overflow: hidden;"> <div style="border: 0px solid #000000; float: left; width: 28%;"> <a href="<?php echo get_author_posts_url($comment->user_id); ?>"><?php echo get_avatar( $comment, 48 ); ?></a> </div> <div style="border: 0px solid #000000; float: right; width: 72%;"> <?php $aantalcomments = get_comments_number( $comment->comment_post_ID ); ?> <a href="<?php echo get_author_posts_url($comment->user_id); ?>"><?php echo($comment->comment_author) ?></a> op:<br> <a href="<?php echo get_comment_link($comment->comment_ID); ?>"> <?php echo($comment->post_name . " (" . $aantalcomments . ")<br>"); ?> </a> <?php echo get_comment_date(' l, j F, Y ', $comment->comment_ID); ?> </div> </div> <hr> <?php endforeach; ?>Forum: Fixing WordPress
In reply to: Visual editor white text without tinyMCEI somehow think it’s not about the plug-ins though. That doesn’t make sense, since my site (including all of those seven plugins!!!) does work on a different hosting.
So I guess it must be something else. A setting in PHP of maybe the MySQL???
But I hardly know anything about that, which is why I’m posting here, hoping somebody else will! 🙁