emke
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Permalinks structureAn update from my side:
Category link https://www.objeqt.com/blog/ab-testing/ goes to a completely random page https://www.objeqt.com/resources/glossary/ab-testing/Category link https://www.objeqt.com/blog/customer-research/ goes to a page https://www.objeqt.com/services/customer-research/
Third link https://www.objeqt.com/blog/testing-culture/ I get the error message:
“Oops! That page can’t be found.”There must be a way to debug why this is happening. Appreciate any help.
- This reply was modified 8 years, 5 months ago by emke.
Forum: Fixing WordPress
In reply to: Changing image sizesHi, you can register one additional image size of 1000×1000. You do that by adding this snippet
add_image_size( ‘new-size’, 1000, 1000, true );See more about the add image size function and the different options available on the following link – https://developer.wordpress.org/reference/functions/add_image_size/
Then you could just use a regenerate thimbnails plugin (https://wordpress.org/plugins/regenerate-thumbnails/) and it would resize all the images to 1000×1000. You would still keep the old images at 2000×2000 though.
Hope this is of help.
Forum: Fixing WordPress
In reply to: Connect custom post typesYou can create relationships between CPTs. Look at this plugin – http://wordpress.org/extend/plugins/posts-to-posts/
If this is something that should be done is another matter. Please read the following tutorials:
1. http://ottopress.com/2011/when-to-not-use-a-custom-taxonomy/
2. http://ottopress.com/2010/wordpress-3-0-and-custom-post-types/Good luck!
Forum: Plugins
In reply to: Adding your name ON an image?Look into this plugin – http://wordpress.org/extend/plugins/image-credit/
Didn’t test it but it seems like it’s doing exactly what you want…Forum: Plugins
In reply to: Adding your name ON an image?You can add custom fields to images – read on the following link
http://www.billerickson.net/wordpress-add-custom-fields-media-gallery/If you don’t want to go into the code, I think any gallery plugin should do this for you.
Forum: Fixing WordPress
In reply to: Back End Slow with 27,000 Categories27 k categories is a lot. Try caching everything with W3 Total Cache plugin but you should really think about your hosting environment as well. Look at this video by WordPress core contributor Mark Jaquith http://wordpress.tv/2011/08/20/mark-jaquith-scaling-servers-and-deploys-oh-my/
Forum: Fixing WordPress
In reply to: Static Page url redirectI assume you’re doing this under Admin Setting / Reading where you can configure a static page and a posts page? If you’ve done this can you check under Settings / General what WordPress Address (URL) is set to? it should be http://mysite.com
Forum: Hacks
In reply to: Having all images uploaded to MaxCDN instead of wp-uploadsHi,
you can use W3 Total Cache (http://wordpress.org/extend/plugins/w3-total-cache/) to connect to MaxCDN. For local files you can run WP cron or something similar to delete the files periodically. I’ve been doing something similar with AWS S3 and set up a cron job to delete local files. I would also be interested if anyone has a good tip and if this is the right way to do this?Forum: Networking WordPress
In reply to: MS MembershipThere is a premium (costs money) plugin at http://premium.wpmudev.org/project/pro-sites that does what you want and more. I don’t know of any other ones but would be interested in hearing if anyone used something else…
Forum: Plugins
In reply to: Plugin for an information databaseI think you would need some plugins, a custom theme so hiring someone might be a smart move. Look into CodePoet on some WP consultants – http://directory.codepoet.com/ or post your project on http://jobs.wordpress.net/. I suggest you try to describe what you want in more details as it’ll make it easier to find a developer.
Forum: Fixing WordPress
In reply to: When updating a page, page stays same.Try clearing you browser cache or if you use a caching plugin empty the cache.
Forum: Networking WordPress
In reply to: How to create a site with MULook at http://codex.wordpress.org/Create_A_Network
You should make a theme for the main site highlighting all the blogs created and once a user registers you can enable so users can create a blog. Look at WordPress.com. They’re a huge WP MS install…Forum: Plugins
In reply to: Looking for a plugin …I’m not sure I got all your requirements but to connect two CPTs you can use Posts 3 Posts and it works great – http://wordpress.org/extend/plugins/posts-to-posts/
Forum: Plugins
In reply to: User custom profilesBuddyPress is modular so you can just enable profiles and the functionalities you actually need.
Regarding the number of pages, I’m not sure as I don’t use any of the hosts you mentioned but have to add that number of pages should not be a limiting factor as it doesn’t make any sense really…Forum: Requests and Feedback
In reply to: Time to improve the WordPress built inn gallery function!There are things that could potentially be added that are considered “Gallery” features but I have found out that with little work I can do almost anything without any plugins. Take a look at http://ottopress.com/2011/photo-gallery-primer/