Title: epicdevspace's Replies - page 2 | WordPress.org

---

# epicdevspace

  [  ](https://wordpress.org/support/users/epicdevspace/)

 *   [Profile](https://wordpress.org/support/users/epicdevspace/)
 *   [Topics Started](https://wordpress.org/support/users/epicdevspace/topics/)
 *   [Replies Created](https://wordpress.org/support/users/epicdevspace/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/epicdevspace/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/epicdevspace/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/epicdevspace/engagements/)
 *   [Favorites](https://wordpress.org/support/users/epicdevspace/favorites/)

 Search replies:

## Forum Replies Created

Viewing 15 replies - 16 through 30 (of 188 total)

[←](https://wordpress.org/support/users/epicdevspace/replies/?output_format=md) 
[1](https://wordpress.org/support/users/epicdevspace/replies/?output_format=md) 
2 [3](https://wordpress.org/support/users/epicdevspace/replies/page/3/?output_format=md)…
[11](https://wordpress.org/support/users/epicdevspace/replies/page/11/?output_format=md)
[12](https://wordpress.org/support/users/epicdevspace/replies/page/12/?output_format=md)
[13](https://wordpress.org/support/users/epicdevspace/replies/page/13/?output_format=md)
[→](https://wordpress.org/support/users/epicdevspace/replies/page/3/?output_format=md)

 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [The blog in my website are appearing two times in same page](https://wordpress.org/support/topic/the-blog-in-my-website-are-appearing-two-times-in-same-page/)
 *  [epicdevspace](https://wordpress.org/support/users/epicdevspace/)
 * (@epicdevspace)
 * [9 years, 3 months ago](https://wordpress.org/support/topic/the-blog-in-my-website-are-appearing-two-times-in-same-page/#post-8668373)
 * Hi
 * Please post on the theme author’s support forum to receive support for your site’s
   issue. I had a look at your site and the problem appears to be theme related.
 * All the best!
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Site stopped working, dashboard turned white](https://wordpress.org/support/topic/site-stopped-working-dashboard-turned-white/)
 *  [epicdevspace](https://wordpress.org/support/users/epicdevspace/)
 * (@epicdevspace)
 * [9 years, 3 months ago](https://wordpress.org/support/topic/site-stopped-working-dashboard-turned-white/#post-8661493)
 * No problem!
 * Please mark this as resolved.
 *   Forum: [Developing with WordPress](https://wordpress.org/support/forum/wp-advanced/)
   
   In reply to: [PLugin for registering Customers](https://wordpress.org/support/topic/plugin-for-registering-customers/)
 *  [epicdevspace](https://wordpress.org/support/users/epicdevspace/)
 * (@epicdevspace)
 * [9 years, 3 months ago](https://wordpress.org/support/topic/plugin-for-registering-customers/#post-8661449)
 * Hi
 * Try [https://wordpress.org/plugins/contact-form-7-to-database-extension/](https://wordpress.org/plugins/contact-form-7-to-database-extension/)
   if you need to see these submissions via an admin page in your Dashboard.
 * All the best!
    -  This reply was modified 9 years, 3 months ago by [epicdevspace](https://wordpress.org/support/users/epicdevspace/).
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Site stopped working, dashboard turned white](https://wordpress.org/support/topic/site-stopped-working-dashboard-turned-white/)
 *  [epicdevspace](https://wordpress.org/support/users/epicdevspace/)
 * (@epicdevspace)
 * [9 years, 3 months ago](https://wordpress.org/support/topic/site-stopped-working-dashboard-turned-white/#post-8661419)
 * Hi
 * Use filezilla and navigate to your wp-content/themes/ folder. Select your current
   theme folder and download functions.php.
 * Open functions.php in notepad and remove the code you added that caused this 
   issue. Save and upload the file (override the existing functions.php file)
 * Test to see if your site is back to normal and reply to this thread.
 * All the best !
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Redirecting a category archive page to an existing post/page?](https://wordpress.org/support/topic/redirecting-a-category-archive-page-to-an-existing-postpage/)
 *  [epicdevspace](https://wordpress.org/support/users/epicdevspace/)
 * (@epicdevspace)
 * [9 years, 4 months ago](https://wordpress.org/support/topic/redirecting-a-category-archive-page-to-an-existing-postpage/#post-8610892)
 * **posted the code above**
 * 🙂
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Redirecting a category archive page to an existing post/page?](https://wordpress.org/support/topic/redirecting-a-category-archive-page-to-an-existing-postpage/)
 *  [epicdevspace](https://wordpress.org/support/users/epicdevspace/)
 * (@epicdevspace)
 * [9 years, 4 months ago](https://wordpress.org/support/topic/redirecting-a-category-archive-page-to-an-existing-postpage/#post-8610869)
 * Hi
 * You can give this a try:
 *     ```
       add_filter('template_redirect', 'my_category_redirect', 10, 3);
       function my_category_redirect( $url, $term, $taxonomy ) {
   
           if ( is_category( 'abc_category' ) ) {
   
               $url = site_url( '/peaches_post' );
   
               wp_safe_redirect( $url, 301 );
   
               exit;
   
           }
   
           return $url;
   
       }
       ```
   
 * Add this code to your [child theme’s](https://codex.wordpress.org/Child_Themes)
   functions.php file.
 * You will have to tweak it to suit your needs.
 * All the best!
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [BAR accross homepage](https://wordpress.org/support/topic/bar-accross-homepage/)
 *  [epicdevspace](https://wordpress.org/support/users/epicdevspace/)
 * (@epicdevspace)
 * [9 years, 4 months ago](https://wordpress.org/support/topic/bar-accross-homepage/#post-8606313)
 * Hi Sue
 * Have a look at the following link:
    [http://members.photocrati.com/how-to-make-additional-style-edits-without-editing-style-css/](http://members.photocrati.com/how-to-make-additional-style-edits-without-editing-style-css/)
 * [@claytonjames](https://wordpress.org/support/users/claytonjames/) suggestion
   is great if you want to add footer content and want a transparent background.
 * My initial post will work great if you want to remove the footer altogether/ 
   have no use for it which is what I gathered from taking a quick peak at your 
   site.
 * The bar you see serves as a background for footer content so I don’t think you’ve
   done anything wrong.
 * All the best!
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Woocommerce Side Bar Divider/Separator](https://wordpress.org/support/topic/woocommerce-side-bar-dividerseparator/)
 *  [epicdevspace](https://wordpress.org/support/users/epicdevspace/)
 * (@epicdevspace)
 * [9 years, 4 months ago](https://wordpress.org/support/topic/woocommerce-side-bar-dividerseparator/#post-8606283)
 * No problem 🙂
 * Please mark this as resolved.
 * All the best!
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [BAR accross homepage](https://wordpress.org/support/topic/bar-accross-homepage/)
 *  [epicdevspace](https://wordpress.org/support/users/epicdevspace/)
 * (@epicdevspace)
 * [9 years, 4 months ago](https://wordpress.org/support/topic/bar-accross-homepage/#post-8606262)
 * Hi Sue
 * The black bar is actually your footer container.
 * Since you are not using it you can add the following CSS to your custom CSS/child
   theme
 *     ```
       .footer_container {
           display: none;
       }
       ```
   
 * All the best!
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Woocommerce Side Bar Divider/Separator](https://wordpress.org/support/topic/woocommerce-side-bar-dividerseparator/)
 *  [epicdevspace](https://wordpress.org/support/users/epicdevspace/)
 * (@epicdevspace)
 * [9 years, 4 months ago](https://wordpress.org/support/topic/woocommerce-side-bar-dividerseparator/#post-8604595)
 * Hi there
 * Add this to your custom CSS (change the background-color):
 *     ```
       #main-content .container::before {
           position: absolute;
           top: 0;
           width: 1px;
           height: 100%;
           background-color: #efefef !important;
           content: "";
       }
       ```
   
 * All the best!
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Embedded content breaks theme design](https://wordpress.org/support/topic/embedded-content-breaks-theme-design/)
 *  [epicdevspace](https://wordpress.org/support/users/epicdevspace/)
 * (@epicdevspace)
 * [9 years, 4 months ago](https://wordpress.org/support/topic/embedded-content-breaks-theme-design/#post-8578770)
 * Hi
 * I placed a div around the embed and the width and height displays as anticipated.
 * My advice is to either code the iframe or make use of WP’s Add Media functionality
   and create a few CSS classes to make life easier.
 * Btw. I assumed your issue was the embed was displaying too wide (running off 
   screen), I could not replicate this issue.
 * All the best!
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Getting Error message that I’ve never seen!](https://wordpress.org/support/topic/getting-error-message-that-ive-never-seen/)
 *  [epicdevspace](https://wordpress.org/support/users/epicdevspace/)
 * (@epicdevspace)
 * [9 years, 4 months ago](https://wordpress.org/support/topic/getting-error-message-that-ive-never-seen/#post-8578600)
 * Hi
 * This is a Redis Proxy related error. Could mean one of several things. Please
   request an error log from your host. While you’re at it ask them to increase 
   the max execution time and see if that resolves the issue.
 * All the best!
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [How to change background color of post title in editor?](https://wordpress.org/support/topic/how-to-change-background-color-of-post-title-in-editor/)
 *  [epicdevspace](https://wordpress.org/support/users/epicdevspace/)
 * (@epicdevspace)
 * [9 years, 4 months ago](https://wordpress.org/support/topic/how-to-change-background-color-of-post-title-in-editor/#post-8578561)
 * Hi
 * Try this
 *     ```
       #titlediv #title {
           background-color: #000 !important;
       }
       ```
   
 * *Ensure that your custom css is called only for post.php
 * All the best!
    -  This reply was modified 9 years, 4 months ago by [epicdevspace](https://wordpress.org/support/users/epicdevspace/).
    -  This reply was modified 9 years, 4 months ago by [epicdevspace](https://wordpress.org/support/users/epicdevspace/).
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [wordpress on namecheap Page isnt working](https://wordpress.org/support/topic/wordpress-on-namecheap-page-isnt-working/)
 *  [epicdevspace](https://wordpress.org/support/users/epicdevspace/)
 * (@epicdevspace)
 * [9 years, 4 months ago](https://wordpress.org/support/topic/wordpress-on-namecheap-page-isnt-working/#post-8578557)
 * Hi
 * Get in touch with Namecheap so they can have a look at all the possible hosting
   related causes.
    Their live chat is pretty awesome.
 * All the best!
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Embedded content breaks theme design](https://wordpress.org/support/topic/embedded-content-breaks-theme-design/)
 *  [epicdevspace](https://wordpress.org/support/users/epicdevspace/)
 * (@epicdevspace)
 * [9 years, 4 months ago](https://wordpress.org/support/topic/embedded-content-breaks-theme-design/#post-8578551)
 * Hi
 * I tried to replicate the issue on my side but couldn’t.
 * See [This Post](http://epicdev.space/wpforums/2016/12/21/hello-world/)
 * I pasted the link in the post’s body however no iframe was auto generated. I 
   then added the embed via Add Media and everything worked just fine.
 * I suspect that there’s a plugin at play here. If you use Add Media (insert from
   url) do you still have the same result?

Viewing 15 replies - 16 through 30 (of 188 total)

[←](https://wordpress.org/support/users/epicdevspace/replies/?output_format=md) 
[1](https://wordpress.org/support/users/epicdevspace/replies/?output_format=md) 
2 [3](https://wordpress.org/support/users/epicdevspace/replies/page/3/?output_format=md)…
[11](https://wordpress.org/support/users/epicdevspace/replies/page/11/?output_format=md)
[12](https://wordpress.org/support/users/epicdevspace/replies/page/12/?output_format=md)
[13](https://wordpress.org/support/users/epicdevspace/replies/page/13/?output_format=md)
[→](https://wordpress.org/support/users/epicdevspace/replies/page/3/?output_format=md)