I have deactivated all the plugins but that didnt help.
Anyone who can see if there is anything wrong with the content in my startpage?:
[vc_row header_color="#00116b" custom_title="Senaste nytt pĂ„ Alltomtrav.info"][vc_column width="1/1"][td_slide_big limit=”8″ autoplay=”5″ category_id=”10″ autors_id=”1″ hide_title=”hide_title”][/vc_column][/vc_row][vc_row header_color="#00116b"][vc_column width="1/3"][td_block4 category_id=”11″ limit=”1″ header_color=”#aa4700″ ajax_pagination=”next_prev”][td_block4 category_id=”7″ limit=”1″ header_color=”#aa4714″ ajax_pagination=”next_prev”][/vc_column][vc_column width="1/3"][td_block4 category_id=”233″ limit=”1″ header_text_color=”#ffffff” header_color=”#aa4700″][td_block4 category_id=”22″ limit=”1″ header_color=”#aa4714″][/vc_column][vc_column width="1/3"][td_block4 category_id=”23″ limit=”1″ header_color=”#aa4714″][td_block4 category_id=”9″ limit=”1″ header_color=”#aa4714″][/vc_column][/vc_row][vc_row header_color="#000068" custom_title="Ăvriga travnyheter frĂ„n Svensk Travmedia"][vc_column width="1/1"][vc_column_text]
[wp_rss_multi_importer category=”6″]
[/vc_column_text][/vc_column][/vc_row]
Thanks!
Its a site I am developing on a sub-domain
http://develop.alltomtrav.info
Whats the best? To do it in original CSS or the Child Theme?
It seems that I can not get the Child Theme to work…
-
This reply was modified 12 years by
Stefan.
SOLVED
I had to update my webconfig file at the server with the following:
<?xml version=”1.0″ encoding=”UTF-8″?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name=”WordPress Rule 1″ stopProcessing=”true”>
<match url=”^index\.php$” ignoreCase=”false” />
<action type=”None” />
</rule>
<rule name=”WordPress Rule 2″ stopProcessing=”true”>
<match url=”^([_0-9a-zA-Z-]+/)?files/(.+)” ignoreCase=”false” />
<action type=”Rewrite” url=”wp-includes/ms-files.php?file={R:2}” appendQueryString=”false” />
</rule>
<rule name=”WordPress Rule 3″ stopProcessing=”true”>
<match url=”^([_0-9a-zA-Z-]+/)?wp-admin$” ignoreCase=”false” />
<action type=”Redirect” url=”{R:1}wp-admin/” redirectType=”Permanent” />
</rule>
<rule name=”WordPress Rule 4″ stopProcessing=”true”>
<match url=”^” ignoreCase=”false” />
<conditions logicalGrouping=”MatchAny”>
<add input=”{REQUEST_FILENAME}” matchType=”IsFile” ignoreCase=”false” />
<add input=”{REQUEST_FILENAME}” matchType=”IsDirectory” ignoreCase=”false” />
</conditions>
<action type=”None” />
</rule>
<rule name=”WordPress Rule 5″ stopProcessing=”true”>
<match url=”^([_0-9a-zA-Z-]+/)?(wp-(content|admin|includes).*)” ignoreCase=”false” />
<action type=”Rewrite” url=”{R:2}” />
</rule>
<rule name=”WordPress Rule 6″ stopProcessing=”true”>
<match url=”^([_0-9a-zA-Z-]+/)?(.*\.php)$” ignoreCase=”false” />
<action type=”Rewrite” url=”{R:2}” />
</rule>
<rule name=”WordPress Rule 7″ stopProcessing=”true”>
<match url=”.” ignoreCase=”false” />
<action type=”Rewrite” url=”index.php” />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>