lisasundberg
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Virtue] Sidebar jumping down below contentHaha, so it was so simple! It did the trick, thanks a lot for the help 🙂
Forum: Fixing WordPress
In reply to: Blank page after changing to child themeDeleted all the cache-files + te W3 Total Cache plugin and now it works, thank you so much!!
Oh, that’s weird, let’s hope it’s just the caching then.
Thanks a lot, so so thankful for your time!! All the best of karma for you!
To me it looks like the logo is shrinking towards the top left corner, whereas I want it to shrink towards the middle, see illustration: http://test.lisasundberg.com/wp-content/uploads/2015/01/logo-toggle.png
It worked, thank you SOO much!!
Also, you don’t happen to know how I can make it scale towards the top center rather than the left top corner?
Exactly, I want to log in at my admin panel at mydomain.com/wp-admin, but it’s redirecting me to my dashboard at wordpress.com…
Forum: Fixing WordPress
In reply to: HTTP-error 500 (Internal Server Error)I contacted my host who found out that it had something to do with my Google Maps plugin. He resolved it in some way.
Thanks a lot anyways!
Forum: Fixing WordPress
In reply to: HTTP-error 500 (Internal Server Error)I can’t reach the dashboard either.. How do I deactivate plugins and switch theme by FTP?
Forum: Fixing WordPress
In reply to: "Session has expired, please log-in again" when customizing themeProblem solved by simply moving all the files to the root instead.
Thanks anyways everybody!
Forum: Fixing WordPress
In reply to: "Session has expired, please log-in again" when customizing themeTrue, thank you! Though I don’t understand why this happens. I have changed the url using this guide http://codex.ww.wp.xz.cn/Giving_WordPress_Its_Own_Directory (“Using a pre-existing subdirectory install”), so the wp-login.php file is in the same directory as all the other files.
What can I do? Do you think it would be better to move all the files to the root directory?
Forum: Themes and Templates
In reply to: Template changes when uploading a postAfter many hours of testing around I believe I have figured out what causes the problem.
Since I don’t want the default secondary feed called “more articles” on my front page, I had simply set the following div to display:none.
<div class="hfeed-more"> <?php $args = array( 'post__not_in' => get_option( 'sticky_posts' ), 'posts_per_page' => 12, 'meta_key' => '_oxygen_post_location', 'meta_value' => 'secondary' ); ?> <?php $loop = new WP_Query( $args ); ?> <?php if ( $loop->have_posts() ) : ?> <?php while ( $loop->have_posts() ) : $loop->the_post(); ?> <div id="post-<?php the_ID(); ?>" class="<?php hybrid_entry_class(); ?>"> <h2 class="post-title entry-title"> <a href="<?php the_permalink(); ?>"><?php the_title(); ?></a> </h2> <?php echo apply_atomic_shortcode( 'byline', '<div class="byline">' . __( '[entry-published] / by [entry-author] / in [entry-terms taxonomy="category"] [entry-edit-link before=" / "]', 'oxygen' ) . '</div>' ); ?> </div><!-- .hentry --> <?php endwhile; ?> <?php else : ?> <?php get_template_part( 'loop-error' ); // Loads the loop-error.php template. ?> <?php endif; ?> </div><!-- .hfeed-more -->I guess some of those rows were necessary to keep the page the way it should be. Does somebody have an idea of how I can remove (or just hide) the secondary feed without messing up the code?
Forum: Themes and Templates
In reply to: Template changes when uploading a postI have tried to remove the quote widget and to deactivate the quote plugin and that did not change anything.
I added two closing div-tags to the footer template which made it work until the moment I deleted one post. Then I deleted one of the closing div-tags and now it looks good again.
Tried to validate but I am not very good at interpreting what the errors mean…:S
Forum: Fixing WordPress
In reply to: "Session has expired, please log-in again" when customizing themeYes, inactivating all the plugins and setting to default theme does not change anything…
Forum: Fixing WordPress
In reply to: "Session has expired, please log-in again" when customizing themeI am using Oxygen as parent theme, and then my own child theme for the css and some of the php-files. Though I’ve tried to reset to the parent theme as well, so that should not be the problem…
Forum: Fixing WordPress
In reply to: Redirect to blank page after update, preview or save plugin settingWhen deactivating the Slide Div plugin I lost my settings which caused no content to appear on the site. So that was probably just a bi effect from me testing around.
Somewhere in the reinstallation of the theme the problem was solved, but I have no idea what exactly caused the problem. Anyways – now it works perfectly fine again!
Thanks!