Limited Support
Our team is currently on holiday, so support will be limited during this period. Response times may be slower than usual, and some inquiries may be delayed.
We appreciate your patience and understanding, and weβll resume our usual support by the end of August.
Feb 13, 2021 9:09 am
I need to move around a div tag with wpf-topic-tags, so it shows just above the div tag with wpf-topic-form-wrap. I have tried using these 3 lines of code and none of them seems to work.
$(document).ready(function() {
$('.wpf-topic-tags').remove().insertBefore('.wpf-topic-form-wrap');
jQuery('.wpf-topic-tags').prependTo('.wpf-topic-form-wrap');
jQuery('.wpf-topic-tags').insertBefore('.wpf-topic-form-wrap');
});
I will appreciate if someone can please point me in the same direction.
Thanks.
Β In case useful, I have wpForo like this Β and I am trying to move the Tags field to be moved to show just before the Title field.
1 Reply
Feb 13, 2021 9:50 am
Try this one:
jQuery(document).ready(function() { Β Β Β jQuery("#wpforo #wpforo-wrap .wpf-topic-tags").prependTo(".wpf-topic-form-wrap") });
It should work fine.Β