mgason
Forum Replies Created
-
Hi,
I got this sorted. I will post the reply from the makers of Types in case it is of use to others.
The problem as explained by wp-types is this…..
“The Re-Order option isnt added to Pages or to any other hierarchical custom type.”I had no idea what hierarchical custom type meant so I asked which led to a 1 checkbox solution! Thanks to Caridad at the ICanLocalize forum (makers of Types)…
“WordPress stores everything in the posts table: posts, pages and custom types. When you create a custom type (or custom post type, its the same) you get the chance to define it hierarchical or not. Post Types Order plugin works with non-hierarchical post types.
For example, pages are hierarchical: they have parents and can be displayed in a tree structure. And posts are not: they have no parents and we list them one after the other.
Edit your custom type and you will see a ‘hierarchical’ checkbox that you need to uncheck for the ‘Post Types Order’ plugin to add a ‘Re-order’ option to the menu.”
Forum: Plugins
In reply to: [Post Types Order] [Plugin: Post Types Order] Doesn't work – pages and cptsHi,
let me jump in. It does allow sorting of custom post types. I have done that on other projects. The problem is it does NOT appear for custom post types defined by using the ‘Types’ plugin https://wp-types.com/documentation/So any ideas on why it does not work with Types? Types is free maybe you guys could see what is wrong. Is Types not defining something?
Thanks so much. I figured I had one wrong and I tried changing them around, obviously I am no PHP expert. It was the first ‘ which I did not change because it was from the example I copied not what I was adding. The code I copied was wrong, not my addition :-0
Forum: Plugins
In reply to: [Magic Fields] [Plugin: Magic Fields] Compatibility with WP 3.4I just used it on a 3.4.1 site it all seemed to work fine.
OK now I am feeling dumb. Sorry it seems to have been settings/cache related. They appear now. Problem solved. Great plugin, thanks
Apologies the options showed up after reloading the backend
It makes no difference if Settings “Show image” is checked or not.
There is no related products settings? WP Dashboard > Products > Coupons > Related Products ?
revised information to above he could not access the backend of the site until he tried to in another browser. he was receiving the too many redirects message that is mentioned in some other posts here relating to the latest update
HI,
I just got a report from a client running a woocommerce site of a blank site after updating the HTTPS plugin. It was fixed by deactivating the plugin. The site had been working fine with the plugin for several months until update. The site was recently moved by HostGator to their servers but was running fine with its new SSL cert there.
Any ideas.
Is there anywhere to get old versions? I am happy to provide a login, how can I contact you?Forum: Themes and Templates
In reply to: translation not working with .mo fileI sorted this out and i think it was a bad po file, I noticed it was throwing errors in the log when save in PoEdit
Basically everything above should work if you have a good po fileI forgot about this post and did not have notify on I guess. I was just listing my lines. highlight=”74,75,76,77,78″ does work.
Thanks dexbarret. I can confirm also that it works that way
highlight=”74-78″ does not work
highlight=”74,75-78″ does workForum: Themes and Templates
In reply to: translation not working with .mo fileoops I also meant to say I code like this that is not translated
<?php _e( 'From the Blog...', 'storefront' ); ?>
Forum: Fixing WordPress
In reply to: How To Export / Create List Of All My Blog Post URL's?ignore the original comment about changing code blocks, I updated the code so you just change 1 word to also list images. Explained in comments in code
https://pastebin.com/qEMbQ8XjForum: Fixing WordPress
In reply to: How To Export / Create List Of All My Blog Post URL's?It depends what you want to do with it.
I did not add it to a page and style it. You could easily.
I just had it load raw to my browser window, a big list. Then I did a copy and paste and imported into Excel. My client just wanted a list he could check when moving his site.
The code is below, if it does not paste properly to comments here post again and give me an email. I will send you a file.To run this you just make it a php file, say export.php, then put that in the root of your site. Go to a browser and type
yourSiteName.com/export.php
The list will appear in the browser.
To also list images and attachments uncomment the global block near the top. As it is it gives you post type, url, title[Code moderated as per the Forum Rules. Please use the pastebin]
To import to Excel,
copy and paste from browser to a plain text file,
save that as a someName.csv
Then in Excel, file new,
select import on file menu,
select csv as the type,
select your file,
select delimited, click next
select Tab as the only delimiter, click next
select each column in the data preview on dialog box and set column data format = text for each, when you have done all of the columns click next
click finish
click ok on last dialog.