Santiago
Forum Replies Created
-
Forum: Plugins
In reply to: [The Events Calendar] Change titlesHi @karll10,
Thanks for reaching out,I can’t see an attached screenshoot. But let me see if we can fin out what is not working for you.
I assume you refer to this article
https://support.theeventscalendar.com/435435-Altering-or-removing-titles-on-calendar-viewsIf that doesn’t work, you could try this snippet and see if it does the trick https://support.theeventscalendar.com/178892-Change-the-wording-of-any-bit-of-text-or-string
Please let me know how this goes
Regards
SantiagoForum: Plugins
In reply to: [The Events Calendar] Change Month in Day viewHi there,
Thanks for reaching out to us,I had a look on your site (https://mfw7.de/events/) and see that you are using a different calendar plugin. This might be confusing as the names are similar.
You might want to give The Events Calendar a try. The free version comes packed with a lot of useful features.
Feel free to get download our plugin here for a test, and let us know if it works for you.Cheers!
SantiagoForum: Plugins
In reply to: [The Events Calendar] Edit page has no contentHi @stavroch,
I’m sorry to hear that you are having this issue.As a first step into finding the cause to the problem, could you go through this guide: Testing for conflicts.
This will allow us to narrow our search to a possible conflict with your theme or plugins.Please let me know how this goes
Regards
SantiagoHi there @bondweb ,
Thanks for reaching out to us,I see you are using this_week_widget. Setting the amount of events can be achieved from Appearance -> Widgets.
This article will be helpful: Configuring the This Week WidgetCheers
SantiagoForum: Plugins
In reply to: [The Events Calendar] Default Page Template and Default Events TemplateHi there,
The events calendar provides a straigt forward way to customize your templates for each calendar view.https://theeventscalendar.com/knowledgebase/themers-guide/
You will find the single event template here:
/wp-content/plugins/the-events-calendar/src/views/single-event.php..and will need to create a folder for your custom template:
Classic Editor templates: wp-content/themes/your-child-theme/tribe-events/
Block Editor templates: wp-content/themes/your-child-theme/tribe/events/Drop the copy there and start customizing.
Let me know if this helps!
Cheers
SantiagoForum: Plugins
In reply to: [The Events Calendar] previus and current month doesnt appear correctyleHi there,
I see there is a 404 error on your site and can’t see the calendar.
My first suggestion would be looking for any conflict with your theme or plugins.
This guide will help you running the test.
https://support.theeventscalendar.com/303643-Testing-for-conflictsAlso, have a look on this article and see if it helps solving the issue.
https://support.theeventscalendar.com/719006-Fixing-HTTP-404-errorsLet me know if this helps!
Cheers
SantiagoForum: Plugins
In reply to: [Polylang] Cant load home page (plugin polylang)Hi @tersite,
It seems like everything is ok except for the image carousel. Could you have a look at the english version of the Home and check if the shorcode for the carousel is there? It looks like the body is empty.
Please let me know how this goes.Forum: Fixing WordPress
In reply to: Images not Loading in the Homepage when Loaded moreHi @admincompaniesport, I hope you are doing fine.
When I inspect the code, I can see that the first set of images have a different come out than the following sets.
srcset="data:image/gif..."
I wonder if you have recently installed a Image optimizer which could be generating some conflict with Jetpack.
If so, my first suggestion would be to deactivate any Image Optimizer and give it a try.
Please let me know how this goes.
Cheers- This reply was modified 7 years, 4 months ago by Santiago.
Forum: Fixing WordPress
In reply to: Word breakingHi @willken10
I’m not totally sure about what you are trying to accompĺish.
I believe this plugin can be what you are looking for:
https://wordpress.org/plugins/advanced-excerpt/Take care!
Forum: Fixing WordPress
In reply to: WordPress not Saving Changes , for gallery and other widgetsHi @carolradiance ,
Sorry to hear about your frustration.If this was working just fine some time ago, and you recently updated WP core, chances are that the new editor included in latest relases of WP (called Gutenberg editor) is conflicting with your current stack.
Try the following:
Install Classic Editor plugin from here https://wordpress.org/plugins/classic-editor/
Activate this new plugin, and test again.Please let me know if that works.
Take care!Forum: Fixing WordPress
In reply to: Is there any way to dynamically redirect URLs using htaccessHi @iavinash
Hope you are doing well.
I wasn’t able to test it, but something like this should work:
RewriteRule "^(.*)$" "?=$1"[R=301,L]You can use this tool to test your htaccess rules: https://htaccess.madewithlove.be/
Hope it helps.
CheersForum: Fixing WordPress
In reply to: Word breakinghey @willken10,
Where are you pasting the snippet and where are you getting the invalid message?Also, I assumed you were refering to the word-wrap css rule, but haven’t had the chance to actually test the site in mobile.
There is a chance that you also need to add the rules suggested by @claytonjames. But you still need to wrap the rules into the media query if you want to change it only for a specific screen size.Forum: Fixing WordPress
In reply to: Bulk Password Page ProtectionI see.
If you still want to use pages, you can enable category support for pages, and use the plugin that you are using to protect categories.
In order to support categories for pages, you can use this plugin:
https://wordpress.org/plugins/add-category-to-pages/Take care!
- This reply was modified 7 years, 4 months ago by Santiago.
Forum: Fixing WordPress
In reply to: Word breakingHi @willken10
You can use a CSS media query like this:
@media only screen and (max-width: 768px) { .site-content { word-wrap: normal; } }More about media queries if you are interested: https://www.w3schools.com/css/css_rwd_mediaqueries.asp
Take care!
Forum: Fixing WordPress
In reply to: Displaying too muchHi @sefanjo
Hope you are doing well
First problem that I notice is that you are using the wrong method to get the image url.
Change
the_post_thumbnail('full');(this returns the whole img tag)
to
the_post_thumbnail_url('full');(this returns just the image url)And I guess you are already aware that this will pick the featured image for the current post. (this won’t work in an archive view, for instance).
You would need to add some conditional logic to check if there is an image available and use some kind of fallback.Take care!
- This reply was modified 7 years, 4 months ago by Santiago.