Forum Replies Created

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter zennermp

    (@zennermp)

    You can disregard this. The magento site was a 404 due to an .htaccess issue at the root of the magento site. The plugin appears to be compatible with PHP 8.1 and Magento 2.4.6

    Insert this snippet of jQuery into a custom javascript file. Have it run on page load. This will move the Facebook link before whatever icon is directly to the left of it. If you want to move it even farther to the left, add more .prev() ‘s to the end of the second line. This is a technical solution which will require some knowledge of jQuery, but it does work for customizing the order of your links without hacking the plugin.

    jQuery(‘img[title=”Facebook”]’).each(function(index, val) {
    var previous = jQuery(val).parent().prev();
    jQuery(val).parent().insertBefore(previous);
    });

    You may want to get more specific with the top line (‘img[title=”Facebook”]’) in case there is a fear of accidentally targeting something else in the post.

    Thread Starter zennermp

    (@zennermp)

    I take it back. After inspecting my live site versus my dev site, I see that instead of the various “HTML before/after” text boxes, there’s one all encompassing text box for the html. It is working just fine after all. Sorry about that.
    I’m just doing maintenance updates on a site I never actually built. Once I re-added various html tags and classes, the Twitter feed started showing again. Thank you for your prompt reply anyways.

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