Title: Hax's Replies | WordPress.org

---

# Hax

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

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

 Search replies:

## Forum Replies Created

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

1 [2](https://wordpress.org/support/users/hax/replies/page/2/?output_format=md) 
[3](https://wordpress.org/support/users/hax/replies/page/3/?output_format=md) … 
[15](https://wordpress.org/support/users/hax/replies/page/15/?output_format=md) 
[16](https://wordpress.org/support/users/hax/replies/page/16/?output_format=md) 
[17](https://wordpress.org/support/users/hax/replies/page/17/?output_format=md) 
[→](https://wordpress.org/support/users/hax/replies/page/2/?output_format=md)

 *   Forum: [Reviews](https://wordpress.org/support/forum/reviews/)
    In reply to:
   [[Image Store] There was a problem adding the images to the cart](https://wordpress.org/support/topic/there-was-a-problem-adding-the-images-to-the-cart/)
 *  Plugin Author [Hax](https://wordpress.org/support/users/hax/)
 * (@hax)
 * [10 years, 8 months ago](https://wordpress.org/support/topic/there-was-a-problem-adding-the-images-to-the-cart/#post-7897354)
 * We are correcting the message for the next release. it happens when there is 
   no image to add or the user cookie has expired.
 *   Forum: [Reviews](https://wordpress.org/support/forum/reviews/)
    In reply to:
   [[Image Store] Solo un detalle…](https://wordpress.org/support/topic/solo-un-detalle/)
 *  Plugin Author [Hax](https://wordpress.org/support/users/hax/)
 * (@hax)
 * [10 years, 8 months ago](https://wordpress.org/support/topic/solo-un-detalle/#post-7962236)
 * Nos puedes dar algunos ejemplos de lo q buscas. Los artículos descarga no tienen
   opción de envio por que los pueden descargar.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [site.com and site.com/example](https://wordpress.org/support/topic/sitecom-and-sitecomexample/)
 *  [Hax](https://wordpress.org/support/users/hax/)
 * (@hax)
 * [10 years, 8 months ago](https://wordpress.org/support/topic/sitecom-and-sitecomexample/#post-6464530)
 * Your config file could have any name. when you enable a site you enable a config
   file not a site.
 * example: a2ensite **site.com** should be **site.com.conf**
    example: a2ensite**
   randomname.com** should be **randomname.com.conf**
 * what is important is what you have in your config file
 * use:
 *     ```
       ServerName site.com
       ServerAlias www.site.com
       ```
   
 * you can’t use sub directories like ** site.com/example**
    if site.com/example
   is a directory in your server use
 * `DocumentRoot /site.com/example`
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Adding index (root) as a page for navigation bar](https://wordpress.org/support/topic/adding-index-root-as-a-page-for-navigation-bar/)
 *  [Hax](https://wordpress.org/support/users/hax/)
 * (@hax)
 * [10 years, 8 months ago](https://wordpress.org/support/topic/adding-index-root-as-a-page-for-navigation-bar/#post-6464529)
 * just add a custom link to your menu.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [email notification of comments](https://wordpress.org/support/topic/email-notification-of-comments-1/)
 *  [Hax](https://wordpress.org/support/users/hax/)
 * (@hax)
 * [10 years, 9 months ago](https://wordpress.org/support/topic/email-notification-of-comments-1/#post-6382090)
 * One way is to set all comments to be approved. You will get an email every time.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [T_CONSTANT_ENCAPSED_STRING](https://wordpress.org/support/topic/t_constant_encapsed_string-2/)
 *  [Hax](https://wordpress.org/support/users/hax/)
 * (@hax)
 * [10 years, 9 months ago](https://wordpress.org/support/topic/t_constant_encapsed_string-2/#post-6381631)
 * you have a backwards single quotes in your file it should be
 *     ```
       define('DB_NAME', 'xxx');
   
       /** MySQL database username */
       define('DB_USER', 'xxx');
   
       /** MySQL database password */
       define('DB_PASSWORD', 'xxx');
       ```
   
 * be sure to use simple text editor when modifying your files.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Site URL not working](https://wordpress.org/support/topic/site-url-not-working-2/)
 *  [Hax](https://wordpress.org/support/users/hax/)
 * (@hax)
 * [10 years, 9 months ago](https://wordpress.org/support/topic/site-url-not-working-2/#post-6383586)
 * The only way is to go into your database in the options table ( [prefix]_options)
   and change the **home** and **site_url** back to what it was
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Can't remove comments from pages!](https://wordpress.org/support/topic/cant-remove-comments-from-pages-1/)
 *  [Hax](https://wordpress.org/support/users/hax/)
 * (@hax)
 * [10 years, 9 months ago](https://wordpress.org/support/topic/cant-remove-comments-from-pages-1/#post-6383096)
 * it could be a plugin issue too. you can add some code to be sure that you remove
   comments by content type also.
 * Here is how [http://xparkmedia.com/blog/wordpress-hide-comments-content-type/](http://xparkmedia.com/blog/wordpress-hide-comments-content-type/)
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [How to eliminate old url content](https://wordpress.org/support/topic/how-to-eliminate-old-url-content/)
 *  [Hax](https://wordpress.org/support/users/hax/)
 * (@hax)
 * [10 years, 9 months ago](https://wordpress.org/support/topic/how-to-eliminate-old-url-content/#post-6383584)
 * You can add a redirect plugin. event if the old urls do not exist they will be
   redirected or use can use your htaccess file to create redirects.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [How to add Google analytic code on my blog?](https://wordpress.org/support/topic/how-to-add-google-analytic-code-on-my-blog/)
 *  [Hax](https://wordpress.org/support/users/hax/)
 * (@hax)
 * [10 years, 9 months ago](https://wordpress.org/support/topic/how-to-add-google-analytic-code-on-my-blog/#post-6384634)
 * you mean you got a subdomian in WordPress.com? you will need to open a ticket
   in WordPress.com
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [When updating any page, changing URL to /coffee-biscuits.html URL](https://wordpress.org/support/topic/when-updating-any-page-changing-url-to-coffee-biscuitshtml-url-2/)
 *  [Hax](https://wordpress.org/support/users/hax/)
 * (@hax)
 * [10 years, 9 months ago](https://wordpress.org/support/topic/when-updating-any-page-changing-url-to-coffee-biscuitshtml-url-2/#post-6384632)
 * It sound like a plugin conflict. What plugins and theme are you using?
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [How to modify the source of email notification of post](https://wordpress.org/support/topic/how-to-modify-the-source-of-email-notification-of-post/)
 *  [Hax](https://wordpress.org/support/users/hax/)
 * (@hax)
 * [10 years, 9 months ago](https://wordpress.org/support/topic/how-to-modify-the-source-of-email-notification-of-post/#post-6384631)
 * Looks like a plugin or something is change the default email in your site. you
   can add the wp_mail_from_name hook to your theme’s function.php file.
 * Here is how [https://xparkmedia.com/blog/change-wordpress-email-address/](https://xparkmedia.com/blog/change-wordpress-email-address/)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Popular Widget] post date](https://wordpress.org/support/topic/post-date-10/)
 *  Plugin Author [Hax](https://wordpress.org/support/users/hax/)
 * (@hax)
 * [12 years, 3 months ago](https://wordpress.org/support/topic/post-date-10/#post-4513497)
 * we provided a solution on the forum, did you had a chance to look at it?
 * [http://xparkmedia.com/support/topic/post-date/](http://xparkmedia.com/support/topic/post-date/)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Popular Widget] Most viewed tab does not display the true most viewed posts](https://wordpress.org/support/topic/most-viewed-tab-does-not-display-the-true-most-viewed-posts/)
 *  Plugin Author [Hax](https://wordpress.org/support/users/hax/)
 * (@hax)
 * [12 years, 3 months ago](https://wordpress.org/support/topic/most-viewed-tab-does-not-display-the-true-most-viewed-posts/#post-4574266)
 * We see that you deactivated the tab, without looking at it we think that it may
   be an javascript error on the page
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Popular Widget] Does this plugin support Polylang?](https://wordpress.org/support/topic/does-this-plugin-support-polylang-1/)
 *  Plugin Author [Hax](https://wordpress.org/support/users/hax/)
 * (@hax)
 * [12 years, 3 months ago](https://wordpress.org/support/topic/does-this-plugin-support-polylang-1/#post-4574265)
 * icakeov,
 * no we don’t support it and we don’t know how the plugin works. but you may be
   able to use the plugin’s API to make your changes
 * [http://xparkmedia.com/plugins/popular-widget/docs/](http://xparkmedia.com/plugins/popular-widget/docs/)

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

1 [2](https://wordpress.org/support/users/hax/replies/page/2/?output_format=md) 
[3](https://wordpress.org/support/users/hax/replies/page/3/?output_format=md) … 
[15](https://wordpress.org/support/users/hax/replies/page/15/?output_format=md) 
[16](https://wordpress.org/support/users/hax/replies/page/16/?output_format=md) 
[17](https://wordpress.org/support/users/hax/replies/page/17/?output_format=md) 
[→](https://wordpress.org/support/users/hax/replies/page/2/?output_format=md)