judev
Forum Replies Created
-
Forum: Plugins
In reply to: [Ninja Forms - The Contact Form Builder That Grows With You] noscript errorHi Curtis,
I am also experiencing this issue.
<noscript class="ninja-forms-noscript-message"> Notice: JavaScript is required for this content.</noscript> string(39) “ninja_forms_styles_apply_standard_units”
I tried lot of things, the only thing working is to disable the plugin Ninja Forms – Layout & Styles.
I have the v 3.0.28, Ninja Forms v3.6.14, WP 6.1.1, PHP 7.4.33Is there anything I can do?
Thanks!
- This reply was modified 1 year, 11 months ago by judev.
Forum: Plugins
In reply to: [WP Show Posts] Align published date (and images)Thanks mate for your detailed answer!
I am going to use this solution until I have some time to implement a JS custom solution.Also, I was wondering if it’s possible to create an interactive post filter (by category)?
(I saw you advised to use filterizr but I was wondering if it’s now possible to do it with WPSP: https://www.ads-software.com/support/topic/post-grid-with-filter-by-custom-post-type/ )Forum: Plugins
In reply to: [WP Show Posts] Align published date (and images)Hi there,
Thanks for the advices!
Concerning the hooks, filters and modifying the html structure, Im actually not really sure what to do since I use a shortcode for displaying WP Show post.
In the premium version, are there more options or it’s way easier?
(I will for sure take the premium version for my next websites. Since I’m almost done with this one, Im wondering what it will do with all the custom I made)For now, I actually set up the height with the css, and changed it depending on the display size. Not the best solution but it is somehow “reponsive”.
- This reply was modified 3 years, 6 months ago by judev.
Forum: Plugins
In reply to: [WP Show Posts] Align published date (and images)Hi!
Thanks for your answer! It works for limiting the excerpt.But the alignments (of the dates and images) are still not working. The main issue is because the title can be in 1 or 2 lines (and i don’t want to cut it).
Alignment is more a CSS matter?
Or maybe there is a php way to make sure the container for the title will be 2 lines?Thanks for your help and time,
Forum: Plugins
In reply to: [WP Show Posts] Align published date (and images)ok i see, let’s do this.
“trimming the excerpt” : if I make sure the excerpt is always in 2 lines, I guess it’ll work too?
If yes, what will be the css for your solution?
Thanks for the help I really appreciate!Forum: Themes and Templates
In reply to: [GeneratePress] Display published & updated date in a containerGreat, works very well!
Thanks a lot ??Forum: Themes and Templates
In reply to: [GeneratePress] Display published & updated date in a containerHi!
This code gave me the same error.
I finally found another code whick works :function ppd_shortcode(){
return get_the_date();
}
add_shortcode(‘ppdate’, ‘ppd_shortcode’);I still don’t understand why the 2 others methods were throwing JSON error.
Now… how do I remove everything in the top of the header? post date, updated date and author.
Thanks!
Forum: Themes and Templates
In reply to: [GeneratePress] Display published & updated date in a containerI run a few tests and the error doesn’t seem to come from the plugins. I desactivated them all, clear the cache and I’m still facing the same error message.
Although there is this error message, the page is actually updated.
The shortcode [post_published] works but.. the published date is displayed at the beginning of the post.Forum: Themes and Templates
In reply to: [GeneratePress] Display published & updated date in a containerHi!
Thanks for your response!
I added your function to functions.php and tried the shortcode [post_published] but it doesn’t work the way it should. When I try to update the post, it throws me an error “Updating failed. The response is not a valid JSON response.”
I read about this error but didn’t investigate it too much. At this time, the only plugins i have are GenerateBlocks, Lightweight Social Icons, Image Optimisation by Optimole.
Any ideas?
Thanks!Forum: Themes and Templates
In reply to: [GeneratePress] Footer customisationSuper! It works but only when I do margin-left instead of margin-right. I don’t understand where does this come from but I least it works great!
Thanks for the code ??Forum: Themes and Templates
In reply to: [GeneratePress] Footer customisationAwesome! Everything works perfectly. Thanks for your support, you are super responsive, it’s super cool thanks!
Last question. How to increase space between the differents icons? and between the words in the menu?
Forum: Themes and Templates
In reply to: [GeneratePress] Footer customisation@yingscarlett Thanks for you quick message! I finally found a solution.
There are still a few things I havent’t figured out it yet.
I would like to increase the space between the item menu and between the icons.
Also, I would like to change the color of the menu. The attribut color doesn’t work (but it works for the copywright text).
Also, I created a line (on the top of the menu), I would like to increase the marge between the line and menu.
I tried this :
.footer-widgets .widget_text hr {
line-height: 1.2em;
width: 300px;
margin-bottom: 60px;
}
But the margin-bottom doesn’t have any effect.Any ideas?
Thanks a lot!
Forum: Themes and Templates
In reply to: [GeneratePress] Footer customisationI finally found a way by using only 1 widget! ??
.footer-widgets .widget_nav_menu li {
display: flex;
align-items: center;
justify-content: center;
display: inline-block;
letter-spacing: 0.2em;
margin-right:10px;
margin-left:10px;}
.footer-widgets .footer-widget-1 {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;}
I’m not sure it’s the best css but it works.
I’m now trying to make a line on the top of the menu (about 300px width).
What’s the best way?
Thanks ??