Stergos Zamagias
Forum Replies Created
-
Forum: Reviews
In reply to: [MAZ Loader – Preloader Builder for WordPress] NiceHello,
The issue you were facing has been identified and fixed in version 1.1.6.
Let me know if you still face this issue once you update.
Forum: Fixing WordPress
In reply to: 5.5 Plugin install & overwrite questionMy question doesn’t have to do with a specific plugin.
It’s more of a question whether the new feature coming in 5.5 will keep active installations count if we install a pro plugin, with the same slug, on top of the existing free version that was downloaded via the WP Plugins Directory.
This has to do with a future plugin.
This is to determine whether this method will keep the active installations on www.ads-software.com/plugins once they install the Pro version on top of the Free.
Forum: Fixing WordPress
In reply to: I need to change the color in two areasHello,
To remove the “border” on your header use:
.zita-site .main-header-bar:before {
background: transparent;
}You can use a media query to target mobile phones and use the above CSS selector to set the color of the “border”.
Stergos
Forum: Fixing WordPress
In reply to: Error Bottom of the pageHello,
JavaScript code must run within <script>…</script> tags in order to run correctly.
The code you provided is incomplete and you should review your theme or any plugin that you have installed that adds the mentioned code and contact the appropriate developer to assist you in fixing it.
Stergos
Forum: Fixing WordPress
In reply to: Image caption in imageHello,
Try adding the following custom CSS into your themes custom CSS section:
@media only screen and (max-width: 768px) { .blocks-gallery-grid .blocks-gallery-image figure, .blocks-gallery-grid .blocks-gallery-item figure, .wp-block-gallery .blocks-gallery-image figure, .wp-block-gallery .blocks-gallery-item figure { flex-direction: column !important; } .blocks-gallery-item__caption { position: relative !important; top: auto; left: auto; bottom: auto !important; margin-top: 10px; height: auto; padding: 0 !important; overflow: initial !important; color: #333 !important; background: transparent !important; } }
It should make the captions appear below the images for screen sizes of less than 768 pixels.
Forum: Fixing WordPress
In reply to: Changing coloursYou may need to add !absolute at the end of each CSS decleration.
example:
.woocommerce-error { color:#ca0606 !important; }
Forum: Fixing WordPress
In reply to: Update to WP 5.4 requires htaccess installed on wp-adminHello,
Try to open and view your .htaccess contents and remove any password protection that you don’t want and try restoring the contents of the file to the default from here: https://www.ads-software.com/support/article/htaccess/
In case you installed a plugin to do this for you, you can disable it, make sure your site works without a password and re-enable it to reconfigure it.
Stergos
Forum: Fixing WordPress
In reply to: Changing coloursHello minimad,
You will need to set the border-top on the following CSS selectors:
.woocommerce-error, .woocommerce-info, .woocommerce-message.
The default border is the following:
3px solid #COLOR
Regards,
StergosForum: Fixing WordPress
In reply to: Bread Crum ErrorHello,
You should be more specific on your problem, is it a Breadcrumbs issue with how the Breadcrumbs appear on your site or regarding structured data Breadcrumbs error?
Stergos
Hello,
You can try disabling all plugins in case one is breaking your backend functionality.
You should also make sure all your plugins are up to date.
One thing you can try is changing to the classic editor to see if this works for you.
Stergos