Mark,
So if I understand what you are looking for I think I have a cleaner solution for you. So all of the form fields are called and set in order by actions and filters, you could try rearranging the order in which each action is called, however I would advise to be careful because some of the actions are nested inside others. For instance the “review head”, which contains the rating, date , and title, is a separate nested bundle of actions than the “review content”. Also the markup is hence distributed across multiple actions, so there is a chance that accidentally removing an action could leave unopened divs, or uncleared floats, or something of that manner. I would suggest rather than trying to move the name display, simply leveraging the “title” field, which is already displayed where you want the name as the name, since as is it doesn’t look like you are collecting a title for the reviews/testimonials. So since the fields are editable, simply make the title field in the options labeled Name, set the other fields you want (i recommend collecting n email if you are not going to use user integration). And then just by using the title field to collect names, you get to this point by default (https://puu.sh/oeEpk/61b9f185e4.png). Then since you are using the title field to collect a name, and the plugin think you aren’t collecting name at all, it is displaying “Anonymous” since that is being input by default for the ‘author’ field of the review, you can then just use jQuery.
jQuery(function() {
jQuery('.rr_review_name').remove();
});
To remove the author credit from the bottom of the content and getting you here: https://puu.sh/oeFnk/bfe7478f83.png
Note: This is not a perfect solution, but get’s the visual layout effect that you want. There’s is a degree of misattributing data, given the usage of the title field and the name field, so this will be reflected in the structure of rich schema associated with your individual review display. The only way to avoid this, would be customizing the display of the review body yourself, effectively rewriting /shortcodes/rr-show.php
.
Let me know if you have any further questions,
Thanks,
Charlie Maxwell
[NM_Developer]