Forum Replies Created

Viewing 13 replies - 1 through 13 (of 13 total)
  • pb_advancis

    (@pb_advancis)

    I′d also love to know that! I just tried the “transition” property in CSS3, but it doesn′t seem to work. Weather i target height, visibility nor overflow nothing happens. The funny thing is, that it seems to work for the transition-delay, so i could at least use this to make it smother anyhow.

    Thread Starter pb_advancis

    (@pb_advancis)

    Ok thanks for that, the updater successfully replaced the jquery file from WP and now it seems to work.

    I just don′t understand why it worked with the updater and not with the code in the functions.php. Basically both do the same thing:

    PLUGIN:

    function rw_jquery_update() {
    		wp_deregister_script('jquery');
    		wp_enqueue_script('jquery', plugins_url('/js/jquery-2.0.3.min.js', __FILE__), false, '2.0.3');
    		// @since 2.0.0 also load the migrate plugin
    		wp_enqueue_script('jquery-migrate', plugins_url('/js/jquery-migrate-1.2.1.min.js', __FILE__), array('jquery'), '1.2.1'); // require jquery, as loaded above
    }
    
    add_action('wp_enqueue_scripts', 'rw_jquery_update');

    FUNCTIONS.PHP:

    function add_google_jquery() {
       if ( !is_admin() ) {
          wp_deregister_script('jquery');
          wp_enqueue_script('jquery','https://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js',,'1.4.1',true);
       }
    }
    add_action('wp_print_scripts ', 'add_google_jquery');

    But the problem i now have is, that my scripts don′t seem to work 100% with jquery 2, because the site doesn′t scroll so smooth like before. Is there a way to replace WPs jquery with 1.6.4. ?

    It′s included in the plugin folder, so i tried editing the path to the 1.6.4.-file, but that broke the plugin, as well as using the google link. It seems to only work when using the latest file ?!…

    Thread Starter pb_advancis

    (@pb_advancis)

    No idea, anyone ? :-/

    Regarding to the informations i′ve found the way i set the anchorlinks should be ok, it also works fine inside the onepager, but wordpress somehow seems to “correct” the link for me …

    Thread Starter pb_advancis

    (@pb_advancis)

    Hi Jacco,

    i just replaced the file you′ve sent to me, but it seems that there is no difference. Basically we could imagine to pay for extended support. If you sent me an offer via e-mail, i would try to get permission for it.

    If you find a shorter solution, that would be excellent. But we are at a point, where finding another solution is no option for us, so we need to fix this as it is.

    Thread Starter pb_advancis

    (@pb_advancis)

    Qurl,

    would it be easier, if i gave you access to our WP installation and FTP. If you write me an e-mail i will sent you the details ([email protected]).

    Thread Starter pb_advancis

    (@pb_advancis)

    Yes, and only on the category page itself, because as i mentioned, everything else worked.

    Thread Starter pb_advancis

    (@pb_advancis)

    For a better understanding you might want to take a look at the website: https://advancis.net/web/

    Thread Starter pb_advancis

    (@pb_advancis)

    Indeed, they are located in the widget area. The structure of the site follows this schematic:

    Website
    /HOME
    //Page
    //Page
    //..
    /CATEGORY1
    //Page
    //Page
    //..
    /CATEGORY2
    //Page
    //Page
    //..

    and so on. There are no sub-categories. Every category page contains a custom excerpt and an icon of each page inside it. Further between the header image and the content area i placed a widget area to display submenus.

    So each category page AND each page inside the category displays this submenu. Before the fix this worked only in the main language, but in others the submenus were missing on the category pages. The submenus on all other pages worked fine. Now it′s the other way arround.

    Thread Starter pb_advancis

    (@pb_advancis)

    At first sight it seems to finally be fixed. At second i unfortunately found some new issues regarding

    a) nearly completely missing menus in the usual widget interface inside wordpress
    b) the menus on the category pages now work and are connected as the should, but the pages inside the categories no longer contain the menus they had before

    i′m not at the office today so this is only my first impression. I would do a more detailed check tomorrow morning (german time – from now on about 22 hours). I suggest the fix is causing, so i hope it can be handled easily. Thanks so far.

    Paul

    Thread Starter pb_advancis

    (@pb_advancis)

    Hi,

    the IDs of our category are as following:

    English (default):

    3/News
    5/Products
    9/Solutions
    6/References
    7/Ressources
    8/Service
    4/Partners

    German:

    35/News
    37/Products
    41/Solutions
    96/References
    39/Ressources
    40/Service
    97/Partners

    Thread Starter pb_advancis

    (@pb_advancis)

    Hi there,

    we finally managed to find help via the WPML support. Unfortunately we could find the problem but not solve it. It seems the problem refers to a part of your plugin. Could you please check this? Here′s what they told us:

    I wanted to update you on what I have found while torubleshooting the issue.

    In the dynamic-widgets/dynwid_worker.php the plugin author is running a check (line 663 – case ‘category’)

    1
    if ( in_array($id, $act_cat) ) {

    I believe the problem is there.

    The array returns the following IDs: 3, 5, 9, 6, 7, 8, 4

    The category ID for this page:https://advancis.net/web/de/category/produkte/ is 37 and as you can see the php conditional fails to return true. 37 is not found in the array.

    This is something the plugin author needs to correct.

    I will inform our “Themes & Plugins Compatibility” team about it so they can contact the plugin author. If you like it may not be a bad idea to open a support ticket in his forum referencing this forum thread.

    And here′s the link to the other support thread:

    https://wpml.org/forums/topic/submenus-for-multilingual-categories-wpmldynamicwidgets/page/3/

    Thanks so far ??

    Thread Starter pb_advancis

    (@pb_advancis)

    Thanks so far ! I managed to register the sidebars and place them inside the theme. Everything works as expected now. But since i did this i got the following problem:

    Submitting a page edit or (de-)activating a plugin leads me to a white screen, as well as previewing a page. Changes are saved, but once on the white screen refreshing doesnt help. Removing the
    functions.php
    fixes the problem so the failure should be in this code:

    <?php register_sidebar( array(
    	'name'          => __( 'Sidebar Header', 'twentytwelve' ),
    	'id'            => 'sidebar-4',
    	'description'   => 'This Sidebar is located in the header area',
        'class'         => '',
    	'before_widget' => '<aside id="%1$s" class="widget %2$s">',
    	'after_widget'  => '</aside>',
    	'before_title'  => '<h3 class="widgettitle">',
    	'after_title'   => '</h3>'
    	) );
    
    	register_sidebar( array(
    	'name'          => __( 'Sidebar Submenu', 'twentytwelve' ),
    	'id'            => 'sidebar-5',
    	'description'   => 'This Sidebar is located on the bottom of the header area',
        'class'         => '',
    	'before_widget' => '<aside id="%1$s" class="widget %2$s">',
    	'after_widget'  => '</aside>',
    	'before_title'  => '<h3 class="widgettitle">',
    	'after_title'   => '</h3>'
    	) ); ?>

    [No bumping, thank you.]

    Thread Starter pb_advancis

    (@pb_advancis)

    Sorry, but none of this contents seems to fit to my problem. The problem is not about the images in the new database its about uploading new ones. so again:

    when i try to upload new images (default option : wp-content/uploads) , wheather if its while editing a post or simply adding a file to the media library, the images aren′t displayed. i see no thumbnail in the overview and no picture in the post. the files are in the folder, they should be, but aren′t displayed. only when i edit one of the suddenly it′s visible, i can crop it an rotate, but after saving it′s invisible again.

    inserting direct-url images works.

    please, help me guys.

    thanks ??

Viewing 13 replies - 1 through 13 (of 13 total)