Giri
Forum Replies Created
-
AuthorPosts
-
Hi Omnicity,
You can try this css.
body.registration #geodir_content { width: 100% !important; }
Hi Byron, stiofan pointed out that this thread is in GDF section. So i hope you are talking about GDF theme.
If thats the case you need to do the following things
1) Make a child theme and then copy the blog-page.php file to your child theme
2) Edit that file, find this line.
<?php the_post_thumbnail( 'geodirf-thumb-300' ); ?>
replace that
geodirf-thumb-300
text with something else. Ex:
byron-thumb-300
3) Make a functions.php file and then add these codes.
add_image_size( 'byron-thumb-300', 300, 300, true ); add_filter( 'image_size_names_choose', 'byron_custom_image_sizes' ); function byron_custom_image_sizes( $sizes ) { return array_merge( $sizes, array( 'byron-thumb-300' => __('300px by 300px',GEODIRECTORY_FRAMEWORK), ) ); }
The changes you make now might affect only the future thumbnails. You may have to use plugins like “regenerate thumbnails” for the old posts
https://wordpress.org/plugins/regenerate-thumbnails/
Let me know how that goes.
Thanks
You are welcome 🙂
Try this code to display those button in the same line
ul.whoop-signup-btns li { float: left; } a.whoop-login-btn { padding-top: 5px; padding-bottom: 5px; margin-bottom: 6px; background-color: #210000; margin-left: 5px; border: 1px solid #210000; background: #210000; background-image: none; line-height: 1.28571em; font-size: 14px; }
Thanks
Hi omnicity,
Apologies. I just noticed this thread. Let me check and get back to you.
Thanks
Hi Byron,
Can you please tell me which theme you are talking about?
Thanks
Hi there,
Try adding this code in code snippets.
https://wordpress.org/plugins/code-snippets/
add_filter('comment_reply_link', 'ds_modify_comment_reply_link', 10, 4); function ds_modify_comment_reply_link($link, $args, $comment, $post) { $post_types = geodir_get_posttypes(); if ($post_types && in_array($post->post_type, $post_types)) { if ($post->post_author != get_current_user_id()) { $link = ""; } } return $link; }
Let me how that goes.
Thanks
Hi if your post type is a locationless cpt, then you can download the latest version and use it. I have recently made changes in supreme.
https://github.com/mistergiri/supreme-directory/commit/682e03f22ab5c0f55991bdc8d3abd0f7c6ff812f
Listings pages would use the Directory Starter layout for locationless cpt instead of Supreme one.
I hope thats what you are after.
Download from here.
https://github.com/mistergiri/supreme-directory
Thanks
You are welcome 🙂
This reply has been marked as private.sort by attendees is not available for user listings. This is because event ids are stored in user meta table and its not possible to sort.
If you are talking about something else, then let me know. I’ll take a look.
This reply has been marked as private.You have not updated payment manager in a while.
According to your screenshot you have v1.3.5 but we have recent v1.4.4
Outdated versions obviously break things.
Please try upgrading the plugin.
Thanks
Kiran suggested to check this link.
https://wpgeodirectory.com/support/topic/payment-link-redirecting-to-hoempage/#post-364544
Resource Limit Is Reached
The website is temporarily unable to service your request as it exceeded resource limit. Please try again later.
-
AuthorPosts