I modelli personalizzati non vengono visualizzati nel menu a discesa dei modelli
-
-
Controlla se haiindex.phpnella radice deltuotemaCheck if you have index.php in the root of your theme
- 0
- 2017-05-01
- Eugene
-
Sto riscontrando lo stessoproblemae hoprovatotutto ciò che haimenzionato.Haimaitrovato una soluzione?I'm having the same issue and tried everything you mentioned. Did you ever get a solution?
- 0
- 2017-05-04
- wckronholm
-
Nelmio casonon vedonemmenoilfilenell'editor deitemi.@ Tom l'hai risolto?In my case i don't even see the file in the Theme Editor. @Tom have you solved it?
- 0
- 2017-11-21
- Ofir Baruch
-
Ho avuto la stessa cosa (v5.4.2).Nonfunzionavae poi è stato così. Avevo appena aggiunto la riga "* Template Post Type:post,page,product" che sembrava risolvereilproblemama quando l'ho rimosso,funzionava ancora ... Unmistero?Forse unproblema di cache di qualchetipo?I had the same thing happening (v5.4.2). It wasn't working and then it was. I had just added the line '* Template Post Type: post, page, product' which appeared to fix the issue but when I removed it, it still worked... A mystery? Caching issue of some sort maybe?
- 1
- 2020-06-11
- dra_red
-
7 risposta
- voti
-
- 2017-11-21
Soloin Wordpress 4.9 c'è questobug: https://core.trac.wordpress.org/ticket/42573 ,facendoin modo chei filemodello vengano riesaminati solo una volta ogni ora.
Per risolvereilproblema (fino a quandonon rilasciano unanuova versione di WP con questamodifica),scarica lapatch su quelbugtickete apporta lemodifiche dallapatch a
wp-includes/class-wp-theme.php
.Spero che questofaccia risparmiare a qualcuno le 2 ore che ho sprecatoin questo ..
Just in Wordpress 4.9 there's this bug: https://core.trac.wordpress.org/ticket/42573 causing the template files to only be rescanned once every hour.
To fix (until they release a new WP version with this changed), download the patch on that bug ticket and make the changes from the patch to
wp-includes/class-wp-theme.php
.Hope this saves someone the 2 hours I wasted on this..
-
Puoi anche aggiungere questo codice altuofunctions.php o aggiungerlo comepluginperinterrompere lamemorizzazionenella cache anzichémodificarei fileprincipali: https://gist.github.com/westonruter/6c2ca0e5a4da233bf4bd88a1871dd950You can also add this code to your functions.php or add it as a plugin to stop caching rather than editing core files: https://gist.github.com/westonruter/6c2ca0e5a4da233bf4bd88a1871dd950
- 3
- 2017-11-22
- Bradley4
-
Un'altra semplice soluzione èinserire la versione deltemanelfile style.css comeindicato da @ ocean90 sulforum.Another simple solution is to bump the theme version in the style.css file as pointed by @ocean90 on the forum.
- 8
- 2017-11-27
- r1987
-
@ r1987 l'aggiornamento di style.css hafunzionato!@r1987 the style.css update worked!
- 1
- 2017-11-29
- Darye
-
Perme lo style.cssera corrotto,quindi aggiornailfilee dovrestiesserebravoFor me the style.css was corrupt, so just update the file and you should be good
- 0
- 2018-06-18
- nodws
-
- 2017-11-02
Assicurati di avereindex.phpneltuotemaprincipale.Iltemaprincipale deve avereindex.php.Ho lo stessoproblema,e questo è statoil caso. Controllato da:
function testate(){ global $wp_themes; $tema = wp_get_theme(); echo '<pre>'; print_r($tema); die; } add_action('init', 'testate' );
Make sure you have index.php in your main theme. Main theme must have index.php. I have same issue, and this was the case. Checked by:
function testate(){ global $wp_themes; $tema = wp_get_theme(); echo '<pre>'; print_r($tema); die; } add_action('init', 'testate' );
-
- 2017-11-21
C'è unbugin Wordpress 4.9.
Hotrovato questoplugintemporaneoestremamente semplice.Hointenzione di disinstallarlo una volta risoltoilbug,manelfrattempofunzionabenissimo!
Plugin: https://github.com/connorlacombe/WP-Clear-File-Cache
There's a bug in Wordpress 4.9.
I found this temporary plugin super straightforward. I plan on uninstalling it once they fix the bug, but it works great in the meantime!
Plugin: https://github.com/connorlacombe/WP-Clear-File-Cache
-
- 2017-03-15
Ho anche avuto questoproblema con un sito su WordPress Multisitee sono riuscito a risolverlo seguendo questipassaggi:
- Vai a http://example.com/wp-admin/network/themes .php (sostituisciexample.com coniltuo URL).
- Fai clic sul link "Modifica" sottoiltema che causaproblemi.
- Nellabarra laterale destra,fai clic sulnome delfilemodello chenon viene visualizzato. Adesempio,potrebbe dire "Modellopaginaeventi (template_events.php)".
- Non apportaremodifiche alfilee fai clic sulpulsanteblu "Aggiornafile".
- Aggiorna la schermata dimodifica dellapaginain cui staitentando diimpostareilmodelloe ora dovrebbeessere visualizzatonelmenu a discesa.
Se questonon risolveilproblema,ti suggerisco di dare un'occhiata a http://vanseodesign.com/wordpress/wp-page-templates-dropdown/. Ci sono alcune altrepossibili soluzioni lì dentro.
Buonafortuna.
I also had this problem with a site on WordPress Multisite and was able to fix it by following these steps:
- Go to http://example.com/wp-admin/network/themes.php (replace example.com with your URL).
- Click the "Edit" link under the theme that's causing you issues.
- In the right sidebar click the name of the template file that's not showing up. For example, it might say "Events Page Template (template_events.php)".
- Don't make any edits to the file and click the blue "Update File" button.
- Refresh the page's edit screen where you're trying to set the template and it should now display in the dropdown.
If this doesn't do the trick for you I'd suggest checking out http://vanseodesign.com/wordpress/wp-page-templates-dropdown/. There are some other possible solutions in there.
Good luck.
-
- 2017-01-08
Imodellipossonoessere disattivati deselezionandoli dalla variabileglobale
wp_themes
prima che venga caricatoilmenu a discesa deimodelli.Esegui questo codicenellapaginaper vedere qualimodelli vengono visualizzati:
global $wp_themes; $tema = wp_get_themes(); print_r($tema["child-theme folder name"]["Template Files"]);
Seiltuomodellonon viene visualizzato,iltemaprincipalepotrebbe averlo annullato dall'array.
Potrebbe apparire,seesegui questo codicenelfront-end,poichéiltemaprincipalepotrebbe disattivarlo solo duranteil caricamento dellapagina dell'editor di amministrazione.
Scaricailtemaprincipalee cercanei file
$wp_themes
ewp_get_themes();
pertrovare laposizione di quel codice.Si spera cheti abbiano dato unmodoperimpedirlo usando unfiltro,altrimentipotresti dover aggiungerenuovamentei fileneltemafiglio. Questopotrebbeessere utile: http://www.wpexplorer.com/wordpress-page-templates-plugin/
Templates can be deactivated by unsetting them from the
wp_themes
global variable before the template dropdown is loaded.Run this code on the page to see what templates show up:
global $wp_themes; $tema = wp_get_themes(); print_r($tema["child-theme folder name"]["Template Files"]);
If your template does not show up, the parent theme might have unset it from the array.
It might show up, if you run this code in front-end, as the parent theme might only unset it during the load of the admin editor page.
Download the parent theme and search the files for
$wp_themes
andwp_get_themes();
to find the location of that code.Hopefully they've given you a way to prevent it using a filter, if not you might have to re-add the files in the child theme. This could be helpful: http://www.wpexplorer.com/wordpress-page-templates-plugin/
-
- 2017-11-29
Risoltoilproblema conilmodello dipaginanon visualizzatonelmenu a discesa perfavore attivailplugin sottostanteper correggere (invece di cambiarei file core di wordpress)
Di seguito è riportatoil collegamentoperil download https://drive.google.com/file/d/1ycHQGdc_RsQtvtf1visualizza? usp=condivisione
Fix page template not showing in dropdown menu please activate below plugin to fix (instead of changing wordpress core files)
Below is link for download https://drive.google.com/file/d/1ycHQGdc_vQtvtfBaznJp1KRsEbcoRwxB/view?usp=sharing
-
Noninstallaremai unplugin da un collegamento come questo!Non ci sipuòfidare.Installa sempreplug-in dafonti attendibili comeil repository deiplug-in di Wordpress.Never install a plugin from a link like this! It cannot be trusted. Always install plugins from trusted sources like the Wordpress Plugin Repository.
- 5
- 2018-12-17
- jasonlfunk
-
- 2019-02-21
Hai spostato o rimosso accidentalmenteilfile style.css dalla radice deltema?
Intal caso,potrebbeessere questo: ricreareiltema style.cssper riattivareilmenu a discesa deimodelli.
Have you accidentally moved or removed the style.css file from the theme root?
If so, it could be this - recreate the themes style.css to re-enable the template dropdown.
Ho alcuniproblemi coni modelliin Wordpress (multisito).Ho creato unfilenella radice dellamia cartella deltemafiglio (template-test.php)
Questomodellonon viene visualizzatonelmenu a discesa deimodelli quando si crea unanuovapagina o simodifica unapaginaesistente.L'unica cosanelmenu a discesa èil "modellopredefinito".
Quello che hoprovatofinora: - Disattivazionee attivazione delmiotema - Flushpermalink - Controlla le autorizzazioni deimiei file - Controlla se style.css ènella radice della cartella deimodelli (lo è)
Hoprovato lo stessofile su un'altrainstallazione di Wordpresse lìfunzionabene.