kaniamea
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Login to Admin area not possibleDer Inhalt geht dabei nicht verloren, da er in der Database gespeichert ist. Hoffe das es gut funktioniert! Sch?ne Grü?e!
Forum: Themes and Templates
In reply to: [OnePress] I have updated the theme and every thing gone!It looks like that the content of your inside pages is still there. Check your Reading Settings and make sure you point to your custom homepage.
Forum: Fixing WordPress
In reply to: Login to Admin area not possibleIs your site https://blutfeder.de/wordpress/ or https://blutfeder.de/
If https://blutfeder.de/ it is possible that you installed WordPress in the wrong location. So it has to be in your root directory where your blutfeder.de site is.
However if https://blutfeder.de/wordpress/ is correct the problem might be:
1) Missing upgrade.php file in the WordPress folder – if it is missing you can download the latest version of WordPress and upload it in the WordPress folder.
2) Corrupt installation. If this is the problem reinstall the whole WordPress software again and that should fix the issue.
Ich hoffe diese Infos sind hilfreich ??
Forum: Themes and Templates
In reply to: [Portfolio Press] Reset Theme to defaultYou can download and upload it in your theme folder. Alternatively check your theme options. It might have a restore option.
Forum: Themes and Templates
In reply to: [matrix] Phone number glitchURL please?
Forum: Themes and Templates
In reply to: Images from Themes not appearingHi John,
So you never saw the images or they were working before and then at some point they were gone?
Make sure the URLs of the images are configured correctly. Do a test and upload an image – go to Add Media – then upload it on a page and see if it appears. Keep in mind, if this is a new site you will have to configure the pages. In other words, often WordPress themes come with prebuilt stuff, but in reality they look different when you install them.
I hope this info helps.Forum: Themes and Templates
In reply to: [OnePress] I have updated the theme and every thing gone!Hello,
If you change your theme to another theme you will loose all settings from the previous theme. Best is to restore the old theme and do a back-up. Depending on what theme you are using for the new design you may have to do some adjustments so that the new site looks good.
Good luck!Forum: Plugins
In reply to: [The Events Calendar] Event view: entry is divided by link to previous eventHello Susan,
check your single-event.php page. Look for the code:<li class="tribe-events-nav-previous"><?php tribe_the_prev_event_link( '« %title%' ) ?></li> <li class="tribe-events-nav-next"><?php tribe_the_next_event_link( '%title% »' ) ?></li>
This code should appear once on the bottom of the page. The way it looks like on your website is that you have this code twice – once on the top and once on the bottom. If that’s the case, just remove the code that is near the top.
I hope this helps.
Forum: Plugins
In reply to: [The Events Calendar] Google Map on Event PageHello,
it is possible the plugin scripts to conflict with your theme scripts. Can you switch to a different WordPress theme, for example Twenty Twelve and see if the map shows.Forum: Plugins
In reply to: [The Events Calendar] Problem after upgradeHi Saranee, it seems some styles are in conflict. Place this to your theme style.css file or tribe-events.css file (if you are using one) and see if it helps:
#tribe-events-content table.tribe-events-calendar { width: auto !important; }
Forum: Plugins
In reply to: [The Events Calendar] border around sidebar widgetHi there,
you can put a border around your sidebar widget with CSS code. For example:text-4.widget-container.widget_text { border: 2px solid #FFDB58; padding: 10px; background: none repeat scroll 0% 0% #E7FFFF; border-radius: 15px;
Just replace “text-4.widget-container.widget_text” with your custom class.
Forum: Plugins
In reply to: [The Events Calendar] Events list / Grid Page TitleHi Craig,
You can add this to your theme functions.php file:
add_filter('wpseo_title','my_custom_titles'); function my_custom_titles($title) { if( tribe_is_month() && tribe_is_list() && !is_tax() ) { return 'YOUR TITLE HERE'; } else { return $title; } }
Thanks David.
Forum: Plugins
In reply to: [The Events Calendar] Remove the sidebar of my calendar pageWhat events template are you using? If you want to remove the sidebar you can try “One column, no sidebar” template.
Forum: Plugins
In reply to: [The Events Calendar] Duplicated EventsHello,
if you have a backup of your events before switching to the new version of the plugin you could try restoring the events using your backup files. Or just manually delete the duplicate events.