Kor
Forum Replies Created
-
AuthorPosts
-
Hi netbrasil,
Not sure what’s wrong but I’d like you to check out this article and try increasing the security of your Website https://codex.wordpress.org/Hardening_WordPress
Hi Sam,
Could you please share the post you’re referring to? I need to recap a little. Also, please provide Wp temp admin access in private reply.
Thanks!
Hi Jamie,
It’s actually still there. http://prntscr.com/d5udk8 . I’ve just switched it to “Font Awesome” rating icon and it should look alot better now. Check out this screenshot http://prntscr.com/d5udqd . Feel free to change the rating colors at GD > Design > Detail .
Thanks!
November 11, 2016 at 7:32 am in reply to: How to change font size on Footer Widget-CPT categories #301829Hi Jeff,
We can use custom CSS below to change that. Insert into Gd > Design > Scripts > Custom Style CSS
h3.gd-cptcat-cat { font-size: 14px; line-height: 14px; } h2.gd-cptcat-title { font-size: 14px; line-height: 14px; }
Hi Andre,
Please refer to this one https://wpgeodirectory.com/support/topic/header-title-into-logo/#post-301826
Thanks
Hi Andre,
That’s actually a page title and you can change that “title” by editing the page as shown in this screenshot http://prntscr.com/d5to78 . Unfortunately, you can’t replace page title with a logo out of the box but you can customize it into a logo by using custom CSS or custom code as mentioned in this URL http://wordpress.stackexchange.com/questions/99788/replace-post-page-titles-with-an-image-in-wordpress
Thanks!
Hi there,
Have you tried increasing the “Number Of Posts” in the “GD > Popular Post View” widget and see if it works? Check out this screenshot http://prntscr.com/d5tkv5 .
Thanks!
Hi Gary,
You’ll have to remove or unpublish all “Places” listings to remove it from the dropdown option. Another workaround would be to change the “Places” to “People” following this section of the documentation https://wpgeodirectory.com/docs/faqs/how-do-i-change-place-and-places/ . Well, let us know how it goes.
Thanks!
Please provide FTP access too. We’ll need it just in case the backend crashes.
Thanks!
Hi Karlos,
Do you think you can share WP temp admin access to your site so we can take a better look? You can post the details here using the private reply option below.
Thanks!
Hi buoy,
You’re Welcome and I hope it helps. Let us know if you need anything else.
Thanks!
Hi Adam,
Unfortunately, this isn’t something that is currently possible to achieve out the box and it requires time to create a shortcode for that. I’ll add it to the request list so that the developers will review it.
Thanks!
Hi netbrasil,
A listing/post will not just disappear on its own, and only an “Administrator”/”Editor” can delete the listings/posts. Probably, the listing has expired? Or removed accidently? Well, let us know if you need anything else.
Thanks!
Hi Gerald,
I just received a response from the developer regarding the #3.3 question and I’d like you to insert the custom snippet below into the “code snippets” plugin. https://wordpress.org/plugins/code-snippets/ . Well, let us know if it works.
/***** CODE STARTS HERE *****/ // Add link to submit a review in the detail sidebar. function geodirectory_add_review_link_in_sidebar() { global $post, $preview; if ( !$preview && !empty( $post ) ) { $review_link = get_comments_link( $post->ID ); $review_link = str_replace('#reviews', '#respond', $review_link); ?> <div class="geodir_more_info geodir_add_review"> <span><i class="fa fa-edit"></i> <a id="geodir_add_review_link" href="javascript:void(0);"><strong><?php _e( 'Write a review', 'geodirectory' ) ;?></strong></a></span> <script type="text/javascript"> jQuery(function($) { $('#geodir_add_review_link').click(function(e){ $('#gd-tabs [data-tab="#reviews"]').trigger('click'); jQuery('html, body').animate({ scrollTop: jQuery('#respond').offset().top }, 500); }); }); </script> </div> <?php } } add_action( 'geodir_after_detail_page_review_rating', 'geodirectory_add_review_link_in_sidebar', 10 );
This reply has been marked as private. -
AuthorPosts