monikos
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Cannot upload TimeStamp files.Any suggestions? To check the modules support also?
Thank youForum: Fixing WordPress
In reply to: Cannot upload TimeStamp files.version 4.7.2 – The problem still resist…
I used Module Extra File Types, and add custom – Time Stamp File / .tsr / application/timestamp-replyStill the same… the uploading start and when is Done, it gives the same error.
- This reply was modified 7 years, 9 months ago by monikos.
Forum: Plugins
In reply to: [Accordion] Unable to see CONTENT of the many accordionsFor me too! The new versions broked all.
Now when i set the new short code, it gives – Nothing Found!!Forum: Fixing WordPress
In reply to: Update-core.php errorIt is solved: moved the whole website to another server with php 5.5 /it been oldest 5.3…/.
So, now the problem is solved.Forum: Fixing WordPress
In reply to: Update-core.php errorThe same here: I just did an automatic update from 4.1.1 to 4.2.2 and got this message:
wordpress update warning invalid argument supplied for foreach() ……..update-core.php line 1252I reinstalled and still the same error?
Any sugests? Thanks
Forum: Plugins
In reply to: [CGC Maintenance Mode] Can you disable maintenance mode if your IP changesHello,
That’s what hapenned to me: My ISP seems to give me a new IP address when my cable modem was rebooted.
Now, i cannot access the admin page.Where exactly is stored the IP, entered for access? i look over the files and the DB… and i cannot see it… I want to change it, and to access the admin again.
Thank youForum: Plugins
In reply to: [YOP Poll] An error has occured!I just send you a link on your email.
Forum: Plugins
In reply to: [YOP Poll] An error has occured!Mozilla, Chrome, IE 10
Forum: Plugins
In reply to: [YOP Poll] An error has occured!What i tested last:
1. You vote and the animation for loading stop/freeze/ and the pop-up message: “An error has occured!” with button OK is showing.
2. After you click OK button, the animation dismiss, but the results votes number is the old one, before the vote.
3. After refreshing of the page, the vote numbers are the NEW correct one….Something… stop the script…maybe.
Forum: Plugins
In reply to: [YOP Poll] An error has occured!wp version: 3.5.1
Forum: Plugins
In reply to: [YOP Poll] An error has occured!As i said: i dont have installed – Advanced/ Access Manager (AAM) plugin
Forum: Plugins
In reply to: [YOP Poll] An error has occured!I have also this error.
Vote from Guests – An error has occurred???
/i dont have installed – Advanced/ Access Manager (AAM) plugin/
Any news about this issue?Forum: Fixing WordPress
In reply to: Function Reference/wp enqueue scriptThis is the key of the solution:
jQuery noConflict Wrappers
The jQuery library included with WordPress is set to the noConflict() mode (see wp-includes/js/jquery/jquery.js). This is to prevent compatibility problems with other JavaScript libraries that WordPress can link.In the noConflict() mode, the global $ shortcut for jQuery is not available, so you can still use:
jQuery(document).ready(function(){
jQuery(#somefunction) …
});
but the following will either throw an error, or use the $ shortcut as assigned by other library.$(document).ready(function(){
$(#somefunction) …
});
However, if you really like the short $ instead of jQuery, you can use the following wrapper around your code:jQuery(document).ready(function($) {
// Inside of this function, $() will work as an alias for jQuery()
// and other libraries also using $ will not be accessible under this shortcut
});
That wrapper will cause your code to be executed when the DOM is fully constructed. If, for some reason, you want your code to execute immediately instead of waiting for the DOM ready event, then you can use this wrapper method instead:(function($) {
// Inside of this function, $() will work as an alias for jQuery()
// and other libraries also using $ will not be accessible under this shortcut
})(jQuery);
Alternatively, you can always reasign jQuery to another shortcut of your choice and leave the $ shorcut to other libraries:var $j = jQuery;
Forum: Fixing WordPress
In reply to: How to query all posts from all custom post typeYou need categorization. Search for some plugin maybe.
Forum: Fixing WordPress
In reply to: Unable to Import anything from WordPress DashboardI think, it is related with the server configuration of your hosting. Ask the support to check.