ag-alva
Forum Replies Created
-
Forum: Plugins
In reply to: [Plugin: Meteor Slides] Meteor Slides won't Loadwell i just tested it in my locaLhost version and it worked fine!
the scripts won’t load anymore, i hope im doing the right thing…
thanks again Josh
Forum: Plugins
In reply to: [Plugin: Meteor Slides] Meteor Slides won't Loadalright i found both files that are enqueued in the functions file:
if( is_singular(‘property’ || ‘portfolio’) || is_page_template(‘homepage.php’)) {
wp_enqueue_script(‘cyclemain’, get_template_directory_uri() . ‘/js/jquery.cycle2.min.js’, array(), ‘2.1.6’, false );
wp_enqueue_script(‘swipe’, get_template_directory_uri() . ‘/js/jquery.cycle2.swipe.min.js’, array(), ‘1.0.1’, true );
}can i just delete those code lines? this is the original functions php file, im using a child theme…
Forum: Plugins
In reply to: [Plugin: Meteor Slides] Meteor Slides won't Loadive tried:
function wpdocs_dequeue_script() {
wp_dequeue_script( ‘jquery.cycle2’ );
}didn’t work
haven’t edit functions file that much, don’t really know if im doing it right…
Forum: Plugins
In reply to: [Plugin: Meteor Slides] Meteor Slides won't LoadThe only issue i have now is that my website finde an error 404 because the headers is trying to load the script jquery.cycle2.min.js?ver=2.1.6′
Does anyone knows where can i edit the file so it won’t load??Thanks in Advanced
Forum: Plugins
In reply to: [Plugin: Meteor Slides] Meteor Slides won't LoadOk i managed to do it by myself, Just deleted the js cycle 2 files and save the cycle 1 in the right folder…
Thank you very much again Josh!
Best regards
Alva
Forum: Plugins
In reply to: [Plugin: Meteor Slides] Meteor Slides won't LoadThank you very much for the quick response, jquery cycle 2 came up with the theme, and i don’t need it, how do i change versione?
Thanks again
Alvaro
Forum: Themes and Templates
In reply to: [ColorWay] change the color of bar in header/front-page.slide .slide-content.entry {
background: none;
border-right: none;
}Forum: Fixing WordPress
In reply to: Pytheas Slider do not appear at the homepageYou have to change the template attribute from the homepage to Home.
Cheers!
Forum: Themes and Templates
In reply to: Twenty eleven Customized nav bar won't work properlyoh man i thought it was a menu bar issue…. i forgot i moved the hole hgroup to include the logo in the page and didn’t thought about the description div!
thank u very much crouchingBruin!!
Forum: Themes and Templates
In reply to: [Customizr] white space between admin bar and body contentForum: Themes and Templates
In reply to: [Customizr] white space between admin bar and body contentwell i am designing the site in my laptop i just uploaded in a testserver so you can see where the white space is located…. i used duplicator plugin to deploy the site in the server but using the child (Damaged) theme wouldn’t work as it showed a lot of warnings and problems…. with the parent theme everything was fine and could upload the site….
as i’ve said i used following function to place the body content before the featured pages
// Move Customizr featured pages add_action ( 'wp_head' , 'move_my_fp'); function move_my_fp() { //we unhook the featured pages remove_action ( '__before_main_container', array( TC_featured_pages::$instance , 'tc_fp_block_display'), 10 ); //we re-hook the block. Check out the priority here : set to 0 to be the first in the list of different actions hooked to this hook add_action ( '__after_main_container', array( TC_featured_pages::$instance , 'tc_fp_block_display'), 1 ); }
im afraid this cause the problem, but can’t figure out where exactly….
Forum: Themes and Templates
In reply to: [Customizr] white space between admin bar and body contenti can’t insert images either in posts or seites, at first it looks like it’s loading, but it loads forever, everything is back to normal when i change the theme back to the parent customizr
need help….anybody??
Forum: Themes and Templates
In reply to: [Customizr] white space between admin bar and body contentit took longer than i expected, because i couldn’t deploy the site using the child theme, i had to first activate the parent theme, upload and deploy the site and after that change the theme, well here is the link:
it doen’t look bad, but it’s bothering me and i think it could bring problems in the future…
thanks in advanced
Forum: Themes and Templates
In reply to: [Customizr] white space between admin bar and body contenti will deploy the site in a test server and poste the link in here
Forum: Fixing WordPress
In reply to: log in Function doesn't handle incorrect password!well i deleted that snippet and the webpage is still redirecting users to the main page regardless if they entered a correct/incorrect password….
i would like to add a function that proves if the users provide the correct password and if so redirects the to the homepage, if not then redirects them to the handling website….if there is any…