kn00tcn
Forum Replies Created
-
Forum: Plugins
In reply to: [Convert Post Types] Database grows in size when convertingdid you ‘optimize table’ in phpmyadmin? is the slug of your custom post type longer than the word ‘post’? (i think if the type is 1 character longer, the DB should grow by 2MB, 1 byte per post?)
Forum: Plugins
In reply to: [Simple Twitter Tweets] reset cache button is neededi attempted setting the api time to 1 minute, but i’m pretty sure it didnt work, could it be that it doesnt alter the cache if no new tweets were written?
Forum: Fixing WordPress
In reply to: WP-Poll Annoyancethe point is to have % charts, not to see how many people are voting (or how lonely the site is)
anyway it’s right there in the poll template settings in the results section, just remove the # of votes parts, lester’s plugins are always good for customizing
Forum: Plugins
In reply to: [LightPress Lightbox] WP-Polls breaks wp-jquery-lightboxgood stuff, now to find what the other plugin i have that’s loading an old jq version
Forum: Requests and Feedback
In reply to: Jpeg image compressioni have some 640×360 images here & they’re not getting any filesize or quality modification, what i upload is what i get (thumbnails get generated by WP & have whatever compression WP uses)
WP has 3 thumbnail sizes you can use & have an aspect for them that’s different from your large image
depending on how few images you have, you can avoid any plugins & just use custom fields of posts + slight php modification of the theme so you have complete control of every image size & quality straight out of lightroom/photoshop/etc
as for fullscreen slideshows, that depends on what you’re going for & if you want to scale up images (making them blurrier) for people with giant monitors
here are some common resolutions & sizes
1024×768 – 4:3 ~17″
1280×800 – 16:10 ~usually various laptops
1440×900 – 16:10 ~19″
1680×1050 – 16:10 ~22″
1920×1080 – 16:9 ~24″
2048×1536 – 4:3 ~26-28″?
2560×1440 – 16:9 ~27-30″?
2560×1600 – 16:10 ~30″?people past 24″ are probably already used to sites designed for 24 & under screens
most site design (or at least the important content, not backgrounds) stays within the limits of ~1,000px (leaves room for scrollbar), so you could just use that as the max width & leave the slideshow as a lightbox, or fullscreen larger images & small monitor people will just have them scaled down
do note that the larger the things on the page are, the more processing power is used (browsers are fairly inefficient), & of course if you have some 2,500px images, the filesize will be high
Forum: Requests and Feedback
In reply to: Doesn't show the subcat under this catit should have a little indentation
are you using custom admin themes or something?
Forum: Requests and Feedback
In reply to: Curly Quotation Marks Don't Work Well When Next to Tagsi see, you can also just paste ’
it looks like WP thinks the word has ended & that nothing is coming before the ‘ since there is an html tag
but if the regular expression or whatever that is looking for ‘s gets adjusted to ignore a closing </tag>, it would now have the wrong quote in more common cases like
<h1>hello</h1>'world'
suppose it could only do ’ after </abbr> though
(i wouldnt know how to do the php to patch this in WP)
Forum: Plugins
In reply to: [Polylang] [Plugin: Polylang] Works PERFECToh wow even bigger bug, when pushing the edit button in the top right of a translation of the current post, the current categories appear when you change to that translated post, instead of the translated categories
Forum: Plugins
In reply to: [Polylang] [Plugin: Polylang] Works PERFECTquick edit breaks the link between translations, have to full edit always
it’s alright, site has launched & i had to hardcode the links anyway so i stopped using list pages (had to link categories in the same menu)
but can you eventually make a feature like this: https://wpml.org/documentation/support/creating-multilingual-wordpress-themes/hard-coded-theme-links/
very useful, generate the correct language link for a post/page/category/etc, even give it a custom name
Forum: Requests and Feedback
In reply to: Plagiarism by plugin (Beautiful social web links)i guess it’s not illegal, but let’s call people out anyway
original https://www.ads-software.com/extend/plugins/ajax-contact-form/
stolen https://www.ads-software.com/extend/plugins/wp-ajax-contact-form/not just the code, the text & even 2 of the screenshots, the dumbass even left the original author’s email in one of them!
Forum: Plugins
In reply to: [Polylang] [Plugin: Polylang] I have no widgets on my themei cant edit older replies? well anyway now i have it hiding the current language
surround the previous output with a little if statement
if ($language->slug != $this->curlang->slug) { $output .= "<li class='".esc_attr($language->slug)."'><a href='$url'>".esc_attr($language->name)."</a></li>\n"; }
you can of course alter this to add a class to the selected language or something
i fixed it, after line 537 of polylang.php, put:
$r['orderby'] = 'menu_order'; $r['order'] = 'ASC';
now the page list… still ignores wp_list_pages of themes, but at least by default it will display based on the order in the admin area, good enough for me
Forum: Fixing WordPress
In reply to: listing pages out of specified orderdid you ever fix this?
i dont think include sorts, you should add &sort_column=menu_order, then pick the order in the admin area
Forum: Plugins
In reply to: [Polylang] [Plugin: Polylang] I have no widgets on my themeline 718 of polylang.php:
$output = "<ul class='polylang'>\n";
added a class for the ulline 723:
$output .= "<li class='".esc_attr($language->slug)."'><a href='$url'>".esc_attr($language->name)."</a>\n";
added a class for the item, using the slug name of the langnow you have full css control