bluantinoo
Forum Replies Created
-
Forum: Plugins
In reply to: [Social Gallery Lite] Error when clicking an image not linked to an imageUpdate: this happens actually only on video and gallery post format, standard format posts opens normally…
I don’t understand if this is a normal feature, if it is I don’t understand how it works because it does not load any picture or video in the “lightbox”, it just stay opened for a sec and then close itself.
In anycase I really would like to open the posts normally.
How to fix this?Forum: Plugins
In reply to: [Social Gallery Lite] Remove the "Powered by" logoJust add this at the bottom of your theme style.css
#sgHonest {
display: none;
}Hi Zap,
if for subscribers you mean logged in users the task is quite simple:1) in kk settings turn off visualization on any post, page, archive or category.
2) open your template files where you want to show the rating, example: single.php for single posts
3) find the place in template where you want the ratings to be and paste this snippet:
<?php if ( is_user_logged_in() ) { if(function_exists("kk_star_ratings")) : echo kk_star_ratings($pid); endif; } else { // use the else to show a message to non logged users echo '<p>To rate this post you Must Login</p>'; } ?>
4) Done: publish your modified file ??
——————
If you need to put ratings along with new comment form, and you are restricting comments to logged in users, you can put the kk_star_ratings($pid) call inside the comment_form args.
It’s quite simple:
1) restrict comments to logged in users in wp-admin->settings->discussion
2) open your comments.php file (or whatever file your theme uses as comments temmplate)
3) find this line:
<?php comment_form(); ?>
3) replace it with this code:
<?php // put the kk_star_ratings call into a variable $ratingstars = (function_exists("kk_star_ratings") ? kk_star_ratings($pid): ''); // declare custom comment_form args $comments_args = array( // here you replace the "Text or HTML to be displayed after the set of comment fields" and you show the ratings 'comment_notes_after' => $ratingstars ); comment_form($comments_args); ?>
This is to achieve something like this: https://goo.gl/b68yH
here you will see the kk rating stars in the comment form box, shown only to logged users.
Here I’ve changed also Form title and the send button title. If you want to change other stuff on your comment form just have a look at this page: https://codex.www.ads-software.com/Function_Reference/comment_form
and add other arguments along with the ‘comment_notes_after’ in the previous snippetI hope it helps ??
Forum: Plugins
In reply to: [WP Geo] Custom Content in MarkerDoes it accept html?
Forum: Plugins
In reply to: [WordPress Share Buttons Plugin – AddThis] No images and JS ErrorHi Srijith,
I’ve seen you’ve managed into my website, did you understand what’s the problem? Maybe yes because you’ve marked topic as resolved?Forum: Plugins
In reply to: [WordPress Share Buttons Plugin – AddThis] No images and JS ErrorHi
actually I cannot share it publicly, as I’m still working on it.
If you want I can tell you privately, otherwise we can wait 2/3 days and I’ll publish itthanks anyway ??
I have a similar problem, posted here:
https://www.ads-software.com/support/topic/no-images-and-js-error?replies=2I tried the dev branch but nothing changed ??
Forum: Plugins
In reply to: [WordPress Share Buttons Plugin – AddThis] No images and JS ErrorI need to update my post: this happens just on pages, while on single posts buttons are shown and sharing works, but the js error keeps staying
Forum: Plugins
In reply to: [WooCommerce Accepted Payment Methods] Feature request: payment option priceHi Jay,
your’re right I got confused, I think I should post my request on woocommerce forum ??sorry for my mistake
This conflict happens even with Gravity Forms,
I hope user-meta authors will update their (wonderful) plugin fixing this issues.
Hi IoanPokorny,
thanks for your answer, but actually I know how to create CPT with code.I just think that for most productions (not all of them) it’s best to use a plugin for doing this routine task.
The scene offer quite a choiche of plugins for creating CPT that looks good and work well, I just would like to know ACF dev’s opinion, if they had try some of them.
Forum: Plugins
In reply to: [Wordpress Advanced Ticket System, Elite Support Helpdesk] Roles ProblemsMaybe it can be done just with:
1) a different ticket list from WATS_TICKET_LIST
2) some custom controls on single-ticket.phpwhat do you think, firebird?
Forum: Plugins
In reply to: [Wordpress Advanced Ticket System, Elite Support Helpdesk] Roles ProblemsHow could I ask for this customization?
Hi firebird,
I’m using the pro version of the plugin and I must say that is quite complete and I’m happy with that.But I’m having the same issue with ticket categories.
Haven’t you thought about using a custom taxonomy for the tickets instead of sharing post categories?
Maybe it would be less confusing for usersActually is not your plugin, sorry.
is the easy comments upload you suggest in WATS extensions ??