Hi,
Please open Plugins page. Do you have there any error messages shown? Are there filters plugin activated?
Regards,
Dima
No have any error in plugin page.
The filters are active
where should i check if something has changed?
Elements: https://prnt.sc/vxlb36
Filters: https://prnt.sc/vxlcy9
General: https://prnt.sc/vxld80
selectors: https://prnt.sc/vxlddn
Thanks
Pibby
Pibby,
Where are you adding the shortcodes? They should be passed through the specific function by the theme/plugin that you are using. As I see this is not happening. This is the issue of the theme/plugin you are using for the page building/content outputting.
Regards,
Dima
I made a dropdown button on the sidebar and added them in there. until now it was operating normally
the code is:
<!-- εδώ είναι η java -->
<script type="text/javascript">
var btn2 = document.getElementById('btn2');
function toggle_visibility(id) {
var e = document.getElementById(id);
if(e.style.display == 'block') {
e.style.display = 'none';
}
else {
e.style.display = 'block';
}
console.log('clicked');
return;
}
</script>
<!-- εδώ είναι η html -->
<div class="container">
<button id="btn2" onclick="toggle_visibility('testing');" class="btn btn-info">Φίλτρα</button>
<div id="testing">
<div class="panel panel-success">
<div class="panel-heading">
<h5 class="panel-title">[br_filters_group group_id=7780]</h5>
<!--κατάστημα-->
<h5 class="panel-title">[br_filters_group group_id=10127]</h5>
<!--κατηγοριών-->
</div>
<div class="panel-body">
[br_filters_group group_id=7757]
<!--ρολόγια-->
</div>
</div>
</div>
</div>
Does this create the problem?
If I add the short code directly will it work?
I just tried to do it directly with the code on a sidebar but it still does not work
-
This reply was modified 5 years, 5 months ago by
panospibby.
“I just tried to do it directly with the code on a sidebar but it still does not work” – please create a screenshot of how are you doing this.
If this [br_filters_group group_id=7780] is not passed through the specific wp function it is just a text.
Regards,
Dima
finally worked with the code directly. Thanks.
Will I be able to put it back in the dropdown button as I had it? or do not allow from your plugin?
Pibby,
The issue is not in our plugin but where shortcodes is placed.
Regards,
Dima