luk4
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Fully left justify textPlease, follow the link I shared above: https://www.ads-software.com/support/forum-user-guide/block-editor/#sharing-images
Forum: Fixing WordPress
In reply to: Fully left justify textGreat. Could you also share a screenshot of what you see on your end, please? It would help to understand what you’re experiencing and, therefore, what you’re expecting.
Forum: Fixing WordPress
In reply to: Fully left justify textWhat photo are you talking about? There isn’t one on the page you’ve linked. Are you looking for help with your home page?
Could you also share a screenshot of what you see on your end, please?
Forum: Fixing WordPress
In reply to: Site not working after installing pluginHi @denttech2
Don’t worry, you just have to temporarily disable your plugins through sFTP or the file manager of your hosting provider, or by editing a specific field of your database. See: https://www.ads-software.com/documentation/article/faq-troubleshooting/#how-to-deactivate-all-plugins-when-not-able-to-access-the-administrative-menus
Then enable again your plugins, but the one crashing your website.
Best of luck!
- This reply was modified 1 year, 1 month ago by luk4.
You may find it easier to find help in Italian on the WordPress community forums dedicated to the Italian language: https://it.www.ads-software.com/support/
Also, it’s probably best to ask for help directly from Woocommerce B2B Sales Agent support here: https://support.woocommerce-b2b.com/
Best of luck!
Forum: Developing with WordPress
In reply to: Mobile menu full-width on small tablet devicesAwesome! ??
Please, don’t forget to mark your post as solved. Thank you!
Forum: Developing with WordPress
In reply to: Embedding a custom choice of pages in a Query LoopAlright, great.
You won’t be able to manually select two specific pages with the Query Loop block. You can try to get the pages you’re looking for by using filters though, especially the keyword filter: https://www.ads-software.com/documentation/article/query-loop-block/#filters
Otherwise, you can enable page categories by using a plugin such as Create And Assign Categories For Pages. Then, simply assign a specific category to the pages you want to display on the “main page”, such as “main”. You’ll now be able to use a “Taxonomy” filter in the Query Loop to target pages in “main” category.
Hope it helps!
Forum: Developing with WordPress
In reply to: Mobile menu full-width on small tablet devicesHi @lisakubbos
This is because your
.et_pb_row_0_tb_header
parent container is switching from 80% to 90% at 767px. Here is a revised version of your code to handle it:.et_mobile_menu { width: 100vw; border-top-width: 0; } @media only screen and (max-width: 767px) { .et_mobile_menu { margin-left: -10vw; } } @media only screen and (min-width: 767.99px) and (max-width: 980px) { .et_mobile_menu { margin-left: -5vw; } }
Hope it helps!
Forum: Fixing WordPress
In reply to: Category topics not workinfThat’s unfortunate ??
Let’s try to understand from where the error is coming first:
- Try temporarily disabling all your plugins. Does the error persist? If so, you can enabling again all the plugins. If not, try enabling the plugins one by one and check whether the error is displayed after each enabling.
- Is the Site Health screen reporting any issues?
Forum: Everything else WordPress
In reply to: Could anyone help me improve my formYou’re very welcome! Have a great day as well. ??
Forum: Developing with WordPress
In reply to: Embedding a custom choice of pages in a Query LoopHi @zuzu24
Due to the differences between WordPress.com and the self-hosted version of WordPress(.org) supported here, you should probably ask WordPress.com Support instead.
Further reading: What’s the difference between www.ads-software.com and WordPress.com?
Thank you!
Forum: Everything else WordPress
In reply to: Could anyone help me improve my formHi @bessardv
You can add the following HTML/CSS snippet at the bottom of your Brevo form:
<style> /* Center Labels & Submit Button */ #sib_signup_form_1 { text-align: center; } </style>
Forum: Everything else WordPress
In reply to: Error fatal Spectra GutenbergThe bug seems happening to everybody. Here is a quick fix: https://www.ads-software.com/support/topic/last-update-destroyed-my-website/#post-17361941
Forum: Everything else WordPress
In reply to: Error fatal Spectra GutenbergHi @agnes59
You may find it easier to find help in Spanish on the WordPress community forums dedicated to the Spanish language: https://es.www.ads-software.com/support/forums/
Otherwise, you may get better results by asking Spectra support directly for help by opening a ticket here: https://wpspectra.com/support/open-a-ticket/
Best of luck!
Edit: Sorry, the Spectra Gutenberg plugin support forum is there: https://www.ads-software.com/support/plugin/ultimate-addons-for-gutenberg/
- This reply was modified 1 year, 1 month ago by luk4.
Forum: Developing with WordPress
In reply to: Share posts across sites in multisite networkCheck out Misha Rudrastyh’s excellent blog posts, especially Publish Posts to Multiple Blogs in WordPress Multisite article: https://rudrastyh.com/wordpress-multisite/post-to-all-sites.html
The author also have two pro plugins for this matter:
- Simple Multisite Crossposting: https://rudrastyh.com/plugins/simple-multisite-crossposting
- Get Posts or Terms from All Sites in Multisite Network: https://rudrastyh.com/plugins/get-posts-from-all-blogs-in-multisite-network
Best of luck!