janet4now
Forum Replies Created
-
Forum: Plugins
In reply to: [Event Tickets and Registration] Incorrect Tickets leftThere are 30 showing in number of items as your sample. But it still shows only 29 as the number of tickets issued in the backend and 29 going. As I showed you in the examples I did screenshots of.
Forum: Plugins
In reply to: [Event Tickets and Registration] Incorrect Tickets leftSure. It shows 30 (which is correct) in one place but looks like 29 elsewhere. See the snapshots of overview and as it appears on the page here: https://www.armstronggraphicdesign.com/wp-content/uploads/sample-attendees-view.jpg
Forum: Plugins
In reply to: [Event Tickets and Registration] Incorrect Attendee ticket countsI am having the same problem.
Forum: Fixing WordPress
In reply to: Media LibraryIf your Media Library is loading but not showing images, there are two primary causes: an incompatible plugin, and improper file permissions.
Disable all your plugins and see if you can see the images. If so, then enable each plugin one by one and checking the media folder each time after refreshing your browser.
If the plugins has no effect, then you can contact your host about fixing the file permissions or read the link below for instructions- This reply was modified 1 year, 9 months ago by janet4now.
Forum: Developing with WordPress
In reply to: Aplicar Fondo al borde de un elementoYes, the code he gave you is correct, but you need to add a class to have it work ONLY on the image you want to target. The link was to show you how to add a class. If you don’t share your page with this image we can’t help you, sorry.
- This reply was modified 1 year, 9 months ago by janet4now.
Forum: Developing with WordPress
In reply to: Aplicar Fondo al borde de un elementono, that doesn’t work. Take a look at the link I gave you that explains about adding classes.
Forum: Developing with WordPress
In reply to: Aplicar Fondo al borde de un elementoYou’ll need to share a link for us to help you, or add a class to your image and then add it to your css code. Try following this as it goes through adding a class to your image and applying css:
https://www.wpbeginner.com/beginners-guide/how-to-add-a-border-around-an-image-in-wordpress/- This reply was modified 1 year, 9 months ago by janet4now.
Forum: Fixing WordPress
In reply to: Social media and scroll top button problemThose icons are 39px, so let’s change the width of that first card. You can try adding this to your additional css area of the customize tab from the dashboard:
@media all and (max-width: 1120px) { .card-started { margin: 0 40px 0; } }
Forum: Fixing WordPress
In reply to: Forbidden You don’t have permission to access this resource.Check out that link I gave you. It talks about file permissions and htaccess
Forum: Fixing WordPress
In reply to: Social media and scroll top button problemYou may have a plugin or something activated. Check your errors for google maps explanation.
You site looks fine on mobile. What is disappearing? Maybe include a screen shot of what you’re seeing.Forum: Developing with WordPress
In reply to: Aplicar Fondo al borde de un elementoYour message in English…
“I need help to apply a css filter through an attribute to an image, but not to the border of the image, but to the shape that includes the image. I don’t understand code. They have told me that it is with this code but I apply it and I do not see the changes: filter: drop-shadow(0px 0px 8px #ed3eef). It won’t let me attach the example screenshots I have.Thank you very much, regards”
You can try this css generator to see if it makes sense. I don’t understand how you are expecting the shadow on the image but not the border. Maybe you don’t really want a drop shadow but something else. https://webcode.tools/generators/css/drop-shadow
Maybe if you can give a link to your image as it appears on the page it will help in understanding.- This reply was modified 1 year, 9 months ago by janet4now.
I have used a plugin to use a default featured image and it worked without problems, but regarding your code, you can try this (not tested)
add_filter( 'post_thumbnail_html', 'default_image_fallback', 10, 5 ); function default_image_fallback( $html, $post_id, $post_thumbnail_id, $size, $attr ) { if ( ! $post_thumbnail_id && $size != 'full' ) { $thumbnail = CHILD_URL . '/images/mydefaultimage.svg'; $html = '<img src="' . $thumbnail . '" class="defaultimage alignnone attachment-' . $size . '" alt="' . get_the_title( $post_id ) . '" />'; } return $html; }
Forum: Fixing WordPress
In reply to: Social media and scroll top button problemI don’t see a scroll to top button or social media links on this page sorry.
But you do have an error related to google maps. Maybe remove that plugin or code wherever it exists and find another way to show your location.Forum: Developing with WordPress
In reply to: Remove container on post template.entry-title {display:none;}
that will hide your title on the posts. This goes in your additional css area of the customize theme tab from the dashboard and only needs to be done once.
Your website is really pretty. I am also a designer and appreciate your style ??
Forum: Fixing WordPress
In reply to: Social media and scroll top button problemPlease post a link to your page with the issue so we can see. An image in this case does not help and I think you forgot to attach anyway ??