Title: epicdevspace's Replies | 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 - 1 through 15 (of 188 total)

1 [2](https://wordpress.org/support/users/epicdevspace/replies/page/2/?output_format=md)
[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/2/?output_format=md)

 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Added “www” to wordpress url, now cannot log in](https://wordpress.org/support/topic/added-www-to-wordpress-url-now-cannot-log-in/)
 *  [epicdevspace](https://wordpress.org/support/users/epicdevspace/)
 * (@epicdevspace)
 * [7 years, 7 months ago](https://wordpress.org/support/topic/added-www-to-wordpress-url-now-cannot-log-in/#post-10764842)
 * Hi
 * You can edit wp-config.php since you cannot access the site’s backend.
 * You will need to add the following to wp-config.php :
 *     ```
       define( 'WP_HOME', 'http://www.example.com' );
       define( 'WP_SITEURL', 'http://www.example.com' );
       ```
   
 * Replace example.com with your url.
 * Additional information can be found [here](https://codex.wordpress.org/Changing_The_Site_URL#Edit_wp-config.php)
 * All the best!
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Where to update the color?](https://wordpress.org/support/topic/where-to-update-the-color/)
 *  [epicdevspace](https://wordpress.org/support/users/epicdevspace/)
 * (@epicdevspace)
 * [8 years, 8 months ago](https://wordpress.org/support/topic/where-to-update-the-color/#post-9444696)
 * Hi there
 * Add / modify the following in your child theme style.css / custom css:
 *     ```
       .social i {
           color: #00974f;
           line-height: 30px;
       }
       ```
   
 * All the best
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [URL Shortcut Form Field](https://wordpress.org/support/topic/url-shortcut-form-field/)
 *  [epicdevspace](https://wordpress.org/support/users/epicdevspace/)
 * (@epicdevspace)
 * [8 years, 8 months ago](https://wordpress.org/support/topic/url-shortcut-form-field/#post-9444694)
 * Hi John
 * I have not come across a plugin that can accomplish this task however it might
   exist.
 * *Some* guidance:
 * Write a simple plugin
    Write a function that contains your form Write the processing
   code: get the user input , add a redirect Create the shortcode
 * Use the shortcode wherever you need it 🙂
 * All the best!
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Problems with photos overlapping with text](https://wordpress.org/support/topic/problems-with-photos-overlapping-with-text/)
 *  [epicdevspace](https://wordpress.org/support/users/epicdevspace/)
 * (@epicdevspace)
 * [8 years, 8 months ago](https://wordpress.org/support/topic/problems-with-photos-overlapping-with-text/#post-9439190)
 * Hi
 * This issue is caused by a class called .alignnone in kid_styles.css. If you remove
   this class via a browser inspector , the problem is resolved.
 * You will need to look at your code and remove this class if it’s unnecessary /
   apply it only when images aren’t aligned left / right.
 * All the best!
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Max Execution Time Fatal Error](https://wordpress.org/support/topic/max-execution-time-fatal-error/)
 *  [epicdevspace](https://wordpress.org/support/users/epicdevspace/)
 * (@epicdevspace)
 * [8 years, 8 months ago](https://wordpress.org/support/topic/max-execution-time-fatal-error/#post-9439110)
 * Hi
 * It’s difficult to pinpoint the issue without looking at the site.
 * It could be a plugin / theme issue if the max execution time fix didn’t work.
 * Try to bugfix this via ftp (backup your plugins directory and themes directory
   first). Then remove any plugins / theme that might be causing the issue and see
   if access to wp-admin is restored after each removal.
 * There could be other potential causal factors here and it is difficult to provide
   guidance without access to your site.
 * All the best!
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [contact form7 problem](https://wordpress.org/support/topic/contact-form7-9/)
 *  [epicdevspace](https://wordpress.org/support/users/epicdevspace/)
 * (@epicdevspace)
 * [8 years, 8 months ago](https://wordpress.org/support/topic/contact-form7-9/#post-9425735)
 * It seems like my closing tag was cut off previously. I have also added an !important
   declaration.
 *     ```
       .screen-reader-response {
           display: none !important;
       }
   
       .wpcf7-response-output.wpcf7-mail-sent-ok {
           border: 1px solid #000 !important;
           padding: 1% !important;
       }
       ```
   
 * If this does not work for you please feel free to post the content of your file
   here (use the code button in your editor before and after your file’s content)
    -  This reply was modified 8 years, 8 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: [contact form7 problem](https://wordpress.org/support/topic/contact-form7-9/)
 *  [epicdevspace](https://wordpress.org/support/users/epicdevspace/)
 * (@epicdevspace)
 * [8 years, 9 months ago](https://wordpress.org/support/topic/contact-form7-9/#post-9423039)
 * Hi
 * There seems to be two notification outputs on your form / page template.
 * To ‘fix’ this via CSS and add some style to the notification div at the bottom
   try this CSS:
 *     ```
       .screen-reader-response {
           display: none;
       }
   
       .wpcf7-response-output.wpcf7-mail-sent-ok {
           border: 1px solid #000;
           padding: 1%;
       ```
   
 * You can add this to your theme’s custom css area or create a child theme and 
   add this to style.css.
 * All the best!
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Broken quote marks](https://wordpress.org/support/topic/broken-quote-marks/)
 *  [epicdevspace](https://wordpress.org/support/users/epicdevspace/)
 * (@epicdevspace)
 * [8 years, 9 months ago](https://wordpress.org/support/topic/broken-quote-marks/#post-9412597)
 * Glad you figured it out. All the best!
 * Can you please mark this as resolved?
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Broken quote marks](https://wordpress.org/support/topic/broken-quote-marks/)
 *  [epicdevspace](https://wordpress.org/support/users/epicdevspace/)
 * (@epicdevspace)
 * [8 years, 9 months ago](https://wordpress.org/support/topic/broken-quote-marks/#post-9412577)
 * Hi Steve
 * Can you send me a link to your site?
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Max Execution Time Fatal Error](https://wordpress.org/support/topic/max-execution-time-fatal-error/)
 *  [epicdevspace](https://wordpress.org/support/users/epicdevspace/)
 * (@epicdevspace)
 * [8 years, 9 months ago](https://wordpress.org/support/topic/max-execution-time-fatal-error/#post-9412558)
 * Hi
 * Get in touch with your host and ask them to increase the max_execution_time directive
   in your php.ini file.
 * Alternatively you can modify / create a php.ini in your public_html directory(
   if your host allows you to do so) and increase the max execution time by adding/
   editing the following. Note the number below indicates the amount of seconds.
 *     ```
       max_execution_time = 10
       ```
   
 * It’s always a good idea to check with your host if you’re uncertain/uncomfortable
   with modifying code.
 * All the best!
 *   Forum: [Developing with WordPress](https://wordpress.org/support/forum/wp-advanced/)
   
   In reply to: [Create a custom page inside my plugin](https://wordpress.org/support/topic/create-a-custom-page-inside-my-plugin/)
 *  [epicdevspace](https://wordpress.org/support/users/epicdevspace/)
 * (@epicdevspace)
 * [9 years ago](https://wordpress.org/support/topic/create-a-custom-page-inside-my-plugin/#post-9038918)
 * Heya
 * Have a look at [https://codex.wordpress.org/Plugin_API/Filter_Reference/page_template](https://codex.wordpress.org/Plugin_API/Filter_Reference/page_template)
 * This should point you in the right direction.
 * User the structure in your theme’s index.php / single.php etc. to achieve your
   desired aesthetic.
 * All the best!
 *   Forum: [Developing with WordPress](https://wordpress.org/support/forum/wp-advanced/)
   
   In reply to: [Child theme](https://wordpress.org/support/topic/child-theme-225/)
 *  [epicdevspace](https://wordpress.org/support/users/epicdevspace/)
 * (@epicdevspace)
 * [9 years, 2 months ago](https://wordpress.org/support/topic/child-theme-225/#post-8907110)
 * What’s the problem?
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Cannot locate text that needs to be changed within admin console](https://wordpress.org/support/topic/cannot-locate-text-that-next-to-be-changed-within-admin-console/)
 *  [epicdevspace](https://wordpress.org/support/users/epicdevspace/)
 * (@epicdevspace)
 * [9 years, 2 months ago](https://wordpress.org/support/topic/cannot-locate-text-that-next-to-be-changed-within-admin-console/#post-8886757)
 * Hi Lauren
 * I cannot see the string at all.
 * Clear your cache and let me know if you still this content.
 * All the best!
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [How to hide sidebar of Virtue theme in responsive](https://wordpress.org/support/topic/how-to-hide-sidebar-of-virtue-theme-in-responsive/)
 *  [epicdevspace](https://wordpress.org/support/users/epicdevspace/)
 * (@epicdevspace)
 * [9 years, 2 months ago](https://wordpress.org/support/topic/how-to-hide-sidebar-of-virtue-theme-in-responsive/#post-8883244)
 * Hi
 * Please provide a link to your website. I cannot see the sidebar in the mobile
   view on the demo site.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Cannot locate text that needs to be changed within admin console](https://wordpress.org/support/topic/cannot-locate-text-that-next-to-be-changed-within-admin-console/)
 *  [epicdevspace](https://wordpress.org/support/users/epicdevspace/)
 * (@epicdevspace)
 * [9 years, 2 months ago](https://wordpress.org/support/topic/cannot-locate-text-that-next-to-be-changed-within-admin-console/#post-8883083)
 * Hi
 * Please provide a link to your site and the string you’re trying to replace.

Viewing 15 replies - 1 through 15 (of 188 total)

1 [2](https://wordpress.org/support/users/epicdevspace/replies/page/2/?output_format=md)
[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/2/?output_format=md)