Jason
Forum Replies Created
-
Forum: Plugins
In reply to: [Quick Page/Post Redirect Plugin] How to track redirects to affiliate linksah that’s a good idea. thank you Trishah!
I would be interested in finding out how to do this as well. Thanks.
Forum: Themes and Templates
In reply to: [Weblizar] hyperlinks disabled when window widthNevermind. I fixed it. It was weird. I had to use overflow:auto; on the .col-md-9.col-sm-9 div to work because the div container wasn’t stretching out to the whole content (may be something to do with that it was a custom php page)
Added this to the CSS:
.col-md-9.col-sm-9 { overflow:auto; }
Thanks.
Forum: Plugins
In reply to: [Mage Reviews] Ratings when edited not updated and left to right …Fixed the hovering star selection issue. Turns out my theme’s bootstrap css file had a line that said this
.btn-group>.btn,.btn-group-vertical>.btn{ position:relative; float:left; }
I changed it to float:right to fix it
.btn-group>.btn,.btn-group-vertical>.btn{ position:relative; float:right; }
Forum: Themes and Templates
In reply to: [Weblizar] Pages gone after update todayGot it. Not sure what happened. I rewrote the custom code after repasting the weblizar templates in it as the skeleton. Works now. Thanks!
Forum: Themes and Templates
In reply to: [Weblizar] Pages gone after update todayThanks. It fixed my weblizar template pages, but for my customized template pages, it is now moving all my content below the footer and the headline text still says “Recent Posts”. I tried implementing the php the_post code above the get_template but it didn’t fix it. Any idea with what I can do to make it work again?
https://weaveagent.com/testvendor/
Thanks.
Forum: Themes and Templates
In reply to: [Weblizar] Pages gone after update todayWeblizar,
I’m running into a similar issue now with the latest update Weblizar 1.6.1 and wordpress 4.0Although my blog aggregate post page is fixed. All my WordPress “pages” are blank.
example (there used to be a form on the page)
https://weaveagent.com/contact-us/Thanks.
Forum: Themes and Templates
In reply to: [Weblizar] Posts page not displaying correctlyGreat that fixed my site’s blog page as well — we appreciate your quick turnaround, Weblizar.
Jason
Forum: Themes and Templates
In reply to: [cerise] Can't Create Child ThemeOh that makes sense now. Thanks.
Forum: Plugins
In reply to: [Mage Reviews] Ratings when edited not updated and left to right …I’m having the same issue with the star selection from right to left. I’m having trouble determining how to fix it for my theme as well. Has anyone faced this and fixed it?
Forum: Plugins
In reply to: [Mage Reviews] Comment Star Ratings are not displayingHad to edit the code in mage-reviews.php (in cast folder) to make the stars appear in the comments section.
Changed the function mage_display_comment_rating($text) to this code:
function mage_display_comment_rating($text){ $val = mage_get_option('reviews','display_author_rating','1'); global $comment; if (!is_object($comment)) return $text; $parent = $comment->comment_post_ID; if (mage_review_post_type($parent)) { /* if ($val != '0'){ */ /* do not need to have an author rating so this if-statement is disabled 15AUG2014 */ /* echo "<br />"; */ /* bump stars down below the date in comment reviews 16AUG2014 */ $text = $val == '1'? $text.mage_get_comment_rating($comment) : mage_get_comment_rating($comment).$text; /* originally 16AUG2014 - $text = $val == '1'? mage_get_comment_rating($comment).$text : $text.mage_get_comment_rating($comment); */ /* } */ /* do not need to have an author rating so this if-statement is disabled 15AUG2014 */ } return $text; /* Note - where the comment text is posted*/ }
Forum: Themes and Templates
In reply to: [Weblizar] Comment Authors Not Displaying CorrectlyGood catch. It worked! Thank you for the fast response!
Thanks for the reply. Looking forward to the new release!
Forum: Plugins
In reply to: [WP Customer Reviews] automatic approved reviewI was looking for this as well. Let me know if anyone knows how to disable it or know how to remove it off the code.