American2020
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Convert WordPress Comments to HTML@bcworkz Thanks. Sounds like a good idea, I guess I could do something like that and have a template for the “post” displaying only the comments.
Not sure how much I would have to hardcode parts of this in order to get it working, but will give it a try.Forum: Fixing WordPress
In reply to: Form to receive video filesI’m not 100% sure this is the answer, but I believe it’s related to the limit set on your PHP configs on your host.
To know the limit, try uploading a file with the name “phpinfo.php” to your site, with this inside:
<?php echo "Current PHP version: " . phpversion(); echo "<br/>*****<br/>"; phpinfo(); ?>Then visit the location of that file on your browser. On the page you will see all the information related with the PHP configs. You want to look for the line with post_max_size
If I’m not mistaken, that’s the limit.
Forum: Plugins
In reply to: Plugin to convert comments into a pageNothing? I can’t find anything, maybe someone knows. Thanks a lot.
Bump.
Forum: Themes and Templates
In reply to: [evolve] error using spanish versionDebe ser algún problema con la versión que están usando.
Con Evolve Lite 3.3.0 y WordPress 4.2.2 en Español la traducción es correcta.
(Working ok, at least that translation with Evolve Lite 3.3.0 and WordPress 4.2.2 Español
*****
I assume the translation is coming from the folder inside the theme folder called “languages” the file es_ES.po
I recommend using some software like “PoEdit” to edit this file and make corrections, you can always use a plain Notepad also.
Forum: Plugins
In reply to: [Menus] Hidde add user ?Let me add a question also, as they show on that same screenshot, would it be possible to hide menus added by themes with this plugin also?
Or that should be done digging into the theme and disabling those by hand?
Forum: Plugins
In reply to: [Menus] Hidde add user ?I’m not logged as Super Admin and I can also see the Users menu when logged as a simple member of the network.
This happens on WordPress 4.2.2
Here is a Screenshot
Well I have been visited from “Ukraine” under same IP range with different browsers. So yes, something weird is going on 😛
I’ll keep an eye and see if the numbers go back to “normal” proportions.
Thanks once again for your time answering question.
Great plugin and great support.
Thanks 😉 I’ll see what I can do. And if I make some time and can help you on the translation I will. Thanks for the answer.
Forum: Fixing WordPress
In reply to: How to Export postand images on itThanks, I’ll give it a try 😉
Forum: Fixing WordPress
In reply to: Site prompting for authentication?Same here with a site hosted in Arvixe.
Forum: Plugins
In reply to: [SyntaxHighlighter Evolved] Set "height"Well, I didn’t tried the div but by adding a height to that class and the overflow-y to auto, worked ok. I also think I can just remove the overflow-y and leave only overflow auto.
Thanks for the answer. And yes it will be a great option for this plugin to be able to set the height, either from the setup, or from the same code on each post, in case someone needs different heights.
[code lang="something" height="xxx px"]
That would be awesome.
Forum: Plugins
In reply to: [SyntaxHighlighter Evolved] Set "height"Well, on the file shCore.css on the folder of the version 3 I modified the nect lines this way and it’s doing his job.
.syntaxhighlighter { height: 400px !important; width: 100% !important; margin: 1em 0 1em 0 !important; position: relative !important; overflow: auto !important; overflow-y: auto !important; font-size: 1em !important; }Note the height added and also the change on the overflow-y
If this happens, just rename the Theme you were using before setting up Maintenance Mode, and then log-in as usual. (Also if what modified your Login Page was a Plugin, do the same, rename it, till you can log in, and turn off Custom Comin Soon Pages.
Thanks Grimmdude 🙂 The Plugin is getting better 🙂 Hope you also add some “Copy to clipboard” functionality, and a “Select All” option above the Textbox. Those 2 functions will also be very useful.
Well, I came out with a solution. Till I thinking in something better, this will work ok.
I changed this line in simple-select-all-textbox.php (Wich wasn’t really unique, bc having more than 1 textbox in same post, would give them all the same number… so)
//generate unique ids for each textbox $post_id = get_the_ID();I changed for:
//generate unique ids for each textbox $post_id = rand(0,999999);Only few in millions the chance of getting twice the same numbers.