Stiofan
Forum Replies Created
-
Hi Harim,
I think you mean different listing types? In that case our CTP addon is rerquired https://wpgeodirectory.com/downloads/custom-post-types/
When installed you have options to install dummy date for each CPT.
If i have misunderstood what you mean please explain more ??
Thanks,
Stiofan
Hi Pat,
Can you let me know exactly what you are trying to do?
- Disable ratings (but still allow comments) Places > Settings > General (show advanced) > Disable ratings
- Disable ratings & Comments Places > Settings > General (show advanced) > Disable comments
- Just remove the output stars from somewhere? You would need to edit the template and remove the GD > Ratings block/shortcode.
Please let me know if you need further help.
Thanks,
Stiofan
Forum: Plugins
In reply to: [AyeCode Connect] Select2 Js Missing ErrorCan you link to your site, i have lots of questions that would be resolved just by having a look at the HTML. Or if you prefer you can open a ticket here https://wpgeodirectory.com/support/ with subject “FAO: Stiofan”
Thanks,
Stiofan
i’d love to improve your view of BlockStrap ??
Let me know what share options (if other than the ones mentioned) you thing would be usefull and i’ll add them, maybe as optional (depending on popularity)Thanks,
Stiofan
Hello,
Up to this point the only services available are facebook, twitter, LinkedIn
What are you currently using to share? We don’t have a built in share system, are you using our BlockStrap plugin which has that functionality or some other solution? If your not sure, you can provide a link and i should be able to tell from the HTML.
Thanks,
Stiofan
Hello,
We dont currently have an option like that, however if you go to Settings > AyeCode UI and set the frontend to load FULL instead of compatibility then the bsui calss will no lonver be allplied and your styles might work properly, let me know.
Thanks,
Stiofan
What do you see wrong with what website?
You are welcome! ??
OK, then you should put everything back to normal and use the below code snippet:
add_filter( 'uwp_setup_nav_menu_item', '_my_custom_uwp_menu_visibility',10,2);
function _my_custom_uwp_menu_visibility($menu_item, $menu_classes){
// basic checks
if(
! is_admin() // check we are not in the admin
&& empty($menu_item->_invalid) // check the menu item is set to show
){
// check we have a login or register UWP menu item
if(
is_array($menu_item->classes) // check the menu item has classes
&& ( in_array('users-wp-login-nav',$menu_item->classes) || in_array('users-wp-register-nav',$menu_item->classes) ) // check the item is either login or register item
){
// get the current URL path eg: /my-page/thing/
$current_url_path = wp_parse_url($_SERVER['REQUEST_URI'], PHP_URL_PATH);
// check if we are on a page where we dont want to open the popup
if(
$current_url_path == '/page-i-want-to-not-open-popup/'
|| $current_url_path == '/another-page-i-want-to-not-open-popup/'
|| $current_url_path == '/another-page-i-want-to-not-open-popup/things-and-stuff/'
|| $current_url_path == '/login/'
){
unset($menu_item->classes[1]); // unset the second class which as standard is the one that will make it open the popup
}
}
}
return $menu_item;
}Let me know if you have any furthter questions.
Thanks,
Stiofan
Hi @mcselecios,
Thanks for reporting, the minified version of the admin JS file was missing, i have fixed this and released an updated now. ??
Thanks,
Stiofan
Forum: Plugins
In reply to: [AyeCode Connect] Select2 Js Missing ErrorHello,
Where are you seeing an issue? Select2 was changed a few versions back to only load when needed. What page are you seeing the issue on?
Thanks,
Stiofan
Ah, yes the dev made a mistake with 2 releases, i have tried removing the tags but for now its still showing there, we will bump the version to 2.8.91 for the next release on Thursday, thanks for reporitng this!
Stiofan
Hi Jamie,
It seems to show 2.3.90 here https://wpackagist.org/search?q=geodirectory&type=any&search=
That is the correct version, maybe this was caching?
Thanks,
Stiofan
Forum: Reviews
In reply to: [BlockStrap Page Builder - Bootstrap Blocks] Incompatible with WpGeoDirectoryHi @manni65929 ,
I am very sorry to hear you are having issues. As you are a paid member i’d like to assign a developer to your issue right away to get you back on track ASAP. If you can open a ticket here https://wpgeodirectory.com/support/ and reference this ticket or add “FAO Stiofan” to the subject i will get a developer to assist you on Monday!
Thanks,
Stiofan
Hello,
If it accepts standard WP meta data keys you can try adding it but prefixing it with ‘geodir_’ so for example ‘geodir_email’ or ‘geodir_city’.
Thanks,
Stiofan