Giri
Forum Replies Created
-
AuthorPosts
-
Hi Cyril,
Try this code.
#reviewsTab #comments article header time, .wpl_reviews #comments article header time, .gdbp-wrapper-reviews #comments article header time { display: block; width: 70%; margin-top: 5px; }
Hi Nasiot,
Can you give me the link to the page? So I can understand which part you are talking about.
I have added wrapper tags like geodir_schedule_start, geodir_schedule_end as per Nasiot request in our Event manager plugin.
So he can hide only end date using the end class
geodir_schedule_end
now.
Thanks
Hi Tyler, Please create a gist in https://gist.github.com/ with the code you tried and give us the link.
As paolo said, you might have a typo in your code.
<?php echo esc_url($full_image_url); ?>
only prints the url.
If you would like to display it as an image, use like this
<img src="<?php echo esc_url($full_image_url); ?>" alt="" />
Let me know if you need help.
Thanks
Hi it seems like your “better weather” plugin causing conflicts. Can you disable that plugin and check whether the show in what locations field working or not?
Thanks
Hi there,
I have applied the code.
Please use the css like
.geodir_schedule_end { display:none; }
to hide the end date.
Thanks
PS: Report me if you see any bugs. I have added the wrapper in 4 instances. so if you would like to target only one page, use a parent class.
Hi Cyril,
Can you try adding this code in custom css.
@media (max-width: 768px) { #reviewsTab #comments .comment-links, .wpl_reviews #comments .comment-links, .gdbp-wrapper-reviews #comments .comment-links { overflow: hidden; width: auto; text-align: right; position: relative; top: auto; right: auto; } #reviewsTab #comments .comment-content, .wpl_reviews #comments .comment-content, .gdbp-wrapper-reviews #comments .comment-content { margin-left: 0; } #reviewsTab #comments ol.commentlist ol.children .comment-content, .wpl_reviews #comments ol.commentlist ol.children .comment-content, .gdbp-wrapper-reviews #comments ol.commentlist ol.children .comment-content { margin-top: 0; } }
Hi Cyril,
I have fixed this bug in Directory Starter. Will be available in next version.
Thanks for reporting that bug
Child theme relying on parent theme. You can only have style.css file to make child theme work. You need functions.php file in child theme only if you are planning to add some extra functions.
Hope that helps.
Thanks
It seems like a bug or maybe styles changed in GD.
Please use the code provided by Guust in the meantime. Also please confirm that code doesn’t cause any issues in other pages.
So I can add that code in Whoop.
Thanks
Hi Cyril,
You seem like using a file called
function.php
file instead of
functions.php
file in child theme.
Please rename that file. Hopefully that would fix your issue.
Thanks
Hi Cyril,
Sorry I have missed your thread yesterday.
Let me check the problem.
Thanks
Hi Nasiot,
I see blank page when i try to apply patch via wordpress plugin editor.
Could you post your FTP details?
That would be much better.
Thanks
You are welcome 🙂
Hi,
You can modify the first item with a filter.
If you don’t want home link use this code
function modify_breadcrumb_first_item($html) { return ''; } add_filter('geodir_breadcrumb_first_link', 'modify_breadcrumb_first_item');
If you would like to modify the link to point to something else use this code instead
function modify_breadcrumb_first_item($html) { return '<a href="' . home_url() . '/directory/">' . __( 'Home', 'geodirectory' ) . '</a>'; } add_filter('geodir_breadcrumb_first_link', 'modify_breadcrumb_first_item');
Replace directory with your endpoint.
Please use code snippets plugin to paste those code. https://wordpress.org/plugins/code-snippets/
You can also use your child theme’s functions.php file.
Thanks
Ho Atilla,
Make sure you are loading the right fonts.
Here is the supreme theme google fonts source code screenshot.
As you can see we load 400 and 700 font weight fonts.
So instead of font-weight: light or lighter, just use the exact weight like font-weight:400, font-weight:700 etc
Lato regular is 400
and Bold is 700.
If you need more options you need to customize google font here and then load that file.
https://fonts.google.com/specimen/Lato?selection.family=Lato
Select this font > customize
Thanks
-
AuthorPosts