dejudicibus
Forum Replies Created
-
PS WP-CRON is disabled, so it is NOT responsible for multiple calls to after_setup_theme hook.
Forum: Plugins
In reply to: [Gutenberg] Reusable block says: the block cannot be displayed inside itselfI have the same problem. Yesterday all the reusable blocks disappeared. If I edit a page containing reusable blocks I get:
Il blocco non può essere visualizzato all’interno di se stesso.
that is, ?Block cannot be rendered inside itself.? That is why I hate visual editors. I never had those problems by the classic editor writing in HTML and using CSS classes, as well as import plug-ins. How can I fix that without adding again all the reusable blocks to all pages?
Thank you very much. Your support was really precious.
The problem was solved by adding AFTER the shortcode a block of code
<hr class="dashed" /> <h3 class="profile">Per accessibilità</h3> <p class="profile"> Nel caso il modulo non funzioni o si abbiano problemi di accessibilità (non vedenti o simili), si prega di scrivere a <a href="mailto:[email protected]" rel="noopener">[email protected]</a>. Grazie. </p>
but I have no idea why.
- This reply was modified 5 years, 5 months ago by dejudicibus.
Forum: Fixing WordPress
In reply to: Wrong number of users in sidebar onlyI had BuddyPress but I have it no more. I disabled and removed it. Do you think I still have some bpp option in wp_options of SQL database?
- This reply was modified 5 years, 11 months ago by dejudicibus.
Forum: Plugins
In reply to: [Post Type Switcher] Menus see converted pages as pages and not postsAny way to fix it, maybe by working directly on the WP database by phpMyAdmin?
Forum: Fixing WordPress
In reply to: Wrong number of usersThe _user table conbtains only TWO records as expected, the _usermeta 477. Any idea why?
Forum: Plugins
In reply to: [YourChannel: Everything you want in a YouTube plugin.] EXCLUDE featureOK, go to
https://academy.romafilm.it/tutti-i-video/
the click on “Progetti Commedia” (the third playlist from left).
As you can see the fourth Private Video is non accessible but it is not either hidden.
I wish to remove that gray placeholder. Thank you in advance.Forum: Plugins
In reply to: [Media Library Assistant] Albums i.e. nested galleriesOK, but if I give back control to MLA, as such:
<h3>Gallery Album</h3> <p class="manifest">Clicca su una miniatura per vedere la galleria corrispondente all'album.</p> [mla_gallery attachment_category="album_thumbnail" mla_link_href="{+page_url+}?album_tag={+terms:attachment_tag(slug),single+}" columns="6" orderby="date" order="DESC" size="thumbnail"] <hr class="dashed" /> <!-- hidden until parameter album_tag is not passed through the URL --> <h3>Selected Gallery</h3> <p class="manifest">Clicca su una miniatura per vedere la foto ingrandita.</p> [mla_gallery attachment_category="gallery" attachment_tag="{+template:({+request:album_tag+}|image_placeholder)+}" columns="6" orderby="date" order="DESC" size="thumbnail"]
I still have a problem, that is, gallery is NOT RESPONSIVE. On mobile stamp thumbnail for 6 columns are too small. So, how can I change the number of columns depending on screen width?
Found a solution
Forum: Plugins
In reply to: [Post Grid By PickPlugins] No post foundOK doesn’t matter. I will use another plugin.
Forum: Plugins
In reply to: [Post Grid By PickPlugins] No post foundAny idea what’s wrong?
Forum: Plugins
In reply to: [Media Library Assistant] Albums i.e. nested galleriesOK, it works now. It looks like thumb_height and thumb_width are ignored. I had to use columns to have the expected thumbnail size:
<h3>Gallery Album</h3> <p class="manifest">Clicca su una miniatura per vedere la galleria corrispondente all'album.</p> [mla_gallery attachment_category="album_thumbnail" mla_link_href="{+page_url+}?album_tag={+terms:attachment_tag(slug),single+}" columns="6" orderby="date" order="DESC" size="thumbnail" thumb_width="180" thumb_height="180"] <hr class="dashed" /> <!-- hidden until parameter album_tag is not passed through the URL --> <h3>Selected Gallery</h3> <p class="manifest">Clicca su una miniatura per vedere la foto ingrandita.</p> [mla_gallery attachment_category="gallery" attachment_tag="{+template:({+request:album_tag+}|image_placeholder)+}" columns="6" orderby="date" order="DESC" size="thumbnail" style="launch" thumb_width="180" thumb_height="180"]
Forum: Plugins
In reply to: [Media Library Assistant] Albums i.e. nested galleriesI also wonder why, when I load the gallery, the albums related to the first shortcode are no more visible. Look at https://academy.romafilm.it/galleria-fotografica
Forum: Plugins
In reply to: [Media Library Assistant] Albums i.e. nested galleriesWow… I did not expected that MLA was so sophisticated. Close to a script language. Thank you for the detailed example. I experimented a little bit with your code.
I associated ANY image that has to go in a gallery to “gallery” category, since I have images that have not to go in galleries. I also associated to any image that has to be used as album thumbnail, to category “album_thumbnail”, one for each album. Eventually, I associated to groups of “gallery” images a tag, to created albums as you suggested.
So I used the following code, but it does not give me the expected result:
<h3>Gallery Album</h3> <p class="manifest">Clicca su una miniatura per vedere la galleria corrispondente all'album.</p> [mla_gallery attachment_category="album_thumbnail" mla_link_href="{+page_url+}?album_tag={+terms:attachment_tag(slug),single+}" orderby="date" order="DESC" size="thumbnail" thumb_width="180" thumb_height="180"] <!-- hidden until parameter album_tag is not passed through the URL --> [mla_gallery attachment_category="gallery" attachment_tag="{+template:({+request:album_tag+}|a-bad-term)+}" columns="6" orderby="date" order="DESC" size="thumbnail" style="launch" thumb_width="180" thumb_height="180"]
First problem: the size of album thumbnail is bigger than the expected 180×180px. Why?
Second problem: if I click on a thumbnail, page is reloaded but it shows ALL the “gallery” images, not the ones associated to the specified album_tag. Any idea why?