csloisel
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: WordPress.com to org problemIf you are referring to the domain name, the 60 day period is only for a full registrar transfer and it only applies for the first 60 days after you bought the domain.
You can also keep your domain registered at wordpress.com and point the domain name servers to bluehost. This method does not have a waiting period and can be done at any time.
- This reply was modified 9 years, 3 months ago by csloisel.
Forum: Fixing WordPress
In reply to: WordPress.com to org problemWhere are you getting this 60 days thing from? When I say transfer the files I mean you have to export the data and import on the new site while the old one is still up so that it can download the images, is that not something you can do?
- This reply was modified 9 years, 3 months ago by csloisel.
Forum: Fixing WordPress
In reply to: WordPress.com to org problemYou are going to have to migrate your data, files, and domain. I suggest reading through this guide, hopefully it will clear up some confusion: https://move.wordpress.com/.
Forum: Developing with WordPress
In reply to: additional image sizesI’m not really understanding what the question or problem is. Maybe start from the beginning and explain what you are trying to accomplish. Where are you trying to use the image sizes? Is this for post content or for use in templates?
Forum: Fixing WordPress
In reply to: Adding items to the themeIn the WP Admin you add new pages by going to “Pages -> Add New” in the main menu. Typically you then link them on the site by putting them in a menu under “Appearance -> Menus”. In the menu administration you create menus, add items to the menu from the links on the side, and then you assign the menu to a location in the theme. There is some menu documentation here: https://codex.ww.wp.xz.cn/WordPress_Menu_User_Guide
Forum: Fixing WordPress
In reply to: HOME Index of /wordpressIn WordPress Admin go to Appearance -> Menus and check the “Home” menu item on your main menu. See if you can change the url there.
Forum: Fixing WordPress
In reply to: HOME Index of /wordpressTry removing “/wordpress” from the menu link.
Forum: Fixing WordPress
In reply to: Author who can’t commentCan you give a little more detail about what is happening when he tries to comment? Is the form not showing? Is the form not working? Is there an error of some kind?
If it’s just one person, it very well could be client-side. He may be using an extension that blocks scripts or something like that.
- This reply was modified 9 years, 3 months ago by csloisel.
Forum: Developing with WordPress
In reply to: Get rid of cart link?I believe Woo automatically puts the cart in the primary menu, and since the menu is used twice, it’s showing twice. The easiest way to remove it would probably be with custom css, something like this:
footer .woo-menu-cart { display: none !important; }Edit: If you aren’t using woo it will be a bit different, it would be easier if I could inspect the element.
Forum: Developing with WordPress
In reply to: dynamic content from databaseI would recommend creating a custom post type, and the post type archive page as the listing, and the single posts would have unique urls. You can then add meta fields to the post type that can be used in the template for template data not part of the content.
If you don’t want to get your hands dirty and build it from the ground up, you can start with at custom post type plugin or even a more specific real estate listing plugin.
Forum: Fixing WordPress
In reply to: Adding items to the themeIt depends on the template, not all templates will use sidebars. For example they are showing on this template: http://bluecollarsommelier.com/about/. It looks like you are using twenty seventeen and I don’t believe that template uses sidebars on the “page” templates, only on the archive pages and single posts. The literal page post type uses a full width layout.
- This reply was modified 9 years, 3 months ago by csloisel.
Forum: Fixing WordPress
In reply to: Mobile Site Not UpdatingIs this affecting all mobile devices or just some? Is there any particular place I can see this happening right now? I’m loading it up on mobile but at a glance everything appears to be aligned with the desktop site.
- This reply was modified 9 years, 3 months ago by csloisel.
Forum: Fixing WordPress
In reply to: Mobile Site Not UpdatingCan you define not updating? What exactly isn’t updating? Does this affect first time visitors, or just returning visitors? Have you enabled any caching or performance plugins?
Forum: Fixing WordPress
In reply to: Automatic media compression/pixilation, Having trouble removing it.Can you link to an example of where this is happening with a resized image, and it’s original?
Forum: Developing with WordPress
In reply to: Updating CPT, error from different page.It sounds like you are hooking into a filter or action that is firing when you save the post. When you hook into something like ‘save_post’ it fires for every post type and any loaded file hooking into that action will trigger.