Chris Perryman
Forum Replies Created
-
Forum: Plugins
In reply to: [Site Reviews] Install Fails?Some more info – tried disabling all plugins and switching to 2017 theme…same behavior.
Have since installed this on another site with no issue. Odd thing is, all three sites we are using/trying to use on are essentially clones of each other: same server environment, same theme etc.
Any ideas?
Forum: Plugins
In reply to: [Site Reviews] Install Fails?Some more info – tried disabling all plugins and switching to 2017 theme…same behavior.
Have since installed this on another site with no issue. Odd thing is, all three sites we are using/trying to use on are essentially clones of each other: same server environment, same theme etc.
Any ideas?
- This reply was modified 7 years, 2 months ago by Chris Perryman.
Forum: Plugins
In reply to: [Awesome Weather Widget] Stopped working…FYI – I missed the whole thing about this requiring an API key now to work (Since Oct 2015). Once I got that and entered it, it took a bit but the weather started showing up again.
Yep ?? Thanks!
Forum: Plugins
In reply to: [Advanced AJAX Page Loader] Extra text at the top of each loaded page (2.7.0)Make sure there is no space between the quotation marks from your ID and the closing > of the div tag.
Forum: Plugins
In reply to: [Advanced AJAX Page Loader] Extra text at the top of each loaded page (2.7.0)Until he fixes the plugin, I did the following to fix this:
1. In your theme, move your classes on that div to show BEFORE the id:
<div class="clearfix" id="content">
2. In the plugin find this line in ajax-page-loader.js:
document.getElementById(AAPL_content).innerHTML = output;
Replace it with:
document.getElementById(AAPL_content).innerHTML = output.substring(1);
Normally I would never recommend altering a plugin, but if you need a sloppy fix for now this should work.
Forum: Plugins
In reply to: [Advanced AJAX Page Loader] Not loading properlyThis is working for me but I’m also getting HTML markup output after my ID tag.
So in my theme I have:
<div id=”content” class=”m-all t-2of3 d-2of3 cf”>
On the page I have this showing like plain text:
class=”m-all t-2of3 d-2of3 cf”>
And if I inspect the code I have:
<div id=”content” class=”m-all t-2of3 d-2of3 cf” style=”display:block;”>
class=”m-all t-2of3 d-2of3 cf”>What’s causing this??
Forum: Plugins
In reply to: [Wp-Pro-Quiz] Multisite SupportI would also like to know…
Forum: Plugins
In reply to: [User Frontend] Templates broken after update…Nevermind, I created a folder called user-frontend in my theme and moved the files into there rather than in my theme root – this was not how it was outlined in installation, and it was working before the update…when did it change?
Forum: Plugins
In reply to: [User Frontend] Redirection IssueI currently have this in my user-login.php file (which isn’t working since I updated the plugin it’s not calling my custom files):
<?php echo isset( $_GET[ ‘redirect_to’ ] ) ? ‘<input type=”hidden” name=”redirect_to” value=”‘ . esc_url( $_GET[ ‘redirect_to’ ] ) . ‘”>’ : ”; ?>
What do I need to do to get the redirect to work?
Forum: Plugins
In reply to: [User Frontend] Redirection IssueWhere am I supposed to set this??
I wanted this feature too…you can accomplish it with this workaround I came up with:
1. Add this code where you want the reviews/stars to show:
<?php $post_id = $post->ID; $postReviews = mts_get_post_reviews( $post_id ); $total = $postReviews[0]->reviewsNum; $user_average = $postReviews[0]->reviewsAvg; //echo $user_average; $percent = round((float)$user_average * 100 / 5 ) . '%'; //echo $percent; ?> <div class="review-total-star-comments"> <div class="review-result-wrapper"> <i class="mts-icon-star icon-star"></i> <i class="mts-icon-star icon-star"></i> <i class="mts-icon-star icon-star"></i> <i class="mts-icon-star icon-star"></i> <i class="mts-icon-star icon-star"></i> <div class="review-result" style="width: <?php echo $percent; ?>;"> <i class="mts-icon-star icon-star"></i> <i class="mts-icon-star icon-star"></i> <i class="mts-icon-star icon-star"></i> <i class="mts-icon-star icon-star"></i> <i class="mts-icon-star icon-star"></i> </div><!-- .review-result --> </div><!-- .review-result-wrapper --> </div>
2. Add the CSS for the .review-total-star-comments div and everything nested in it directly to your theme. You can find this with Chrome developer tools etc.
Forum: Plugins
In reply to: [User Frontend] Redirection IssueNo, I was not able to get this working – I don’t want to edit the core plugin, but that’s my next move unfortunately unless they fix this….
Forum: Plugins
In reply to: [User Frontend] Redirection IssueBump?
So for instance, on this post: https://revelationconcept.com/wordpress-send-admin-notification-user-updates-profile/
If you click “subscribe without commenting”…on the following page, I want the post name to by in bold (at least)…and I had to revert to using quotes since the
<strong>
tag was showing on the page.I know I can go in and manually alter these in the plugin, but that defeats the purpose of what a plugins is supposed to do ??