Forum Replies Created

Viewing 15 replies - 1 through 15 (of 23 total)
  • Hi,
    which other plugin did you use, plese?

    A@

    Thread Starter astandera

    (@astandera)

    Hi,
    I have tried to update BackWPUp on another website (same hosting service) and the same trouble. There is what the Update plugin line in WP Plugins list shows:
    Update unsuccesful: <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN"> 504 Gateway Timeout Gateway Timeout The gateway did not receive a timely response from the upstream server or application.
    I had to delete .maintenance file to bring my website back to live, BUT the plugin is updated to 3.6.6 and working.
    My PHP version is 5.6, WP 4.9.9, BackWPUp 3.6.6.

    Any idea what would cause this issue?

    Thank you

    Alois

    Thread Starter astandera

    (@astandera)

    Hi,
    manual install helped, thank you, it works. The plugin’s folder was missing lots of files in my FTP after its update compared with the ZIP version!
    I intall the ZIPped plugin via WP Instal plugins, even this wrote:: Unsuccesful, the plugin was not activated automatically, BUT the plugin was in the Plugin list and allowed me to Activate.

    How could I influence to avoid this, it seems, that something on the server side decides to interrupt updating on timeout. Is that possible? Shall I ask my hoster for a special setup?

    Hmmm…

    Alois

    • This reply was modified 7 years, 5 months ago by astandera.
    Thread Starter astandera

    (@astandera)

    I tried downgrade Elementor from 1.9.4. to 1.9.0. Filtering still does not filter correctly.
    When putting Pugfolio Module into Elementor Section, I can immediately see number of set my portfolio Items (from ALL of mine) BUT after Update/View of page, some of them are even missing.
    +
    Pagination is missing as well, more than 50 Items is not allowed to show (probably).

    It all seems to be a festival of lost time 🙁

    Regards

    A@

    Thread Starter astandera

    (@astandera)

    Replaying myself for the others

    Moving standard WordPress Category Posts as Portfolio categories via Taxonomy Switcher plugin, success:
    https://cs.wordpress.org/plugins/taxonomy-switcher/

    Moving standard Posts as Portfolio Items via Post Type Switcher plugin, success:
    https://cs.wordpress.org/plugins/post-type-switcher/
    vit the help of the guide for batch quick way here:
    http://www.wpbeginner.com/plugins/how-to-convert-post-types/

    GOOD NEWS:
    All my Categories and Posts I succesfully moved to new taxonomy created by your plugin.

    BAD NEWS:
    Although all is set properly in Portfolio categories and Items (yes, categories have posts properly), your plugin Pugfolio from Elementor does not filter properly. From my about 100 Portfolio Items the filter does not work for more than a half, which makes this effort completly useless 🙁

    I tried to off all my plugins, switch theme to twenty seventeen… no, it does not work wit latest Elementor 1.9.4.

    A@

    • This reply was modified 8 years, 3 months ago by astandera.

    WP dashboard > Look > Menu > choose your desired Menu > Add Language switcher to menu as item > collaps it and tick the option Show Flags.
    A@

    Hi,
    have you tried to set URLs either in Polylang or WordPress setting back to defaults (url looks like something/?-pageid-16…. I mean to disable pretty urls, like /something/en/my-post.
    I had once a similar trouble, that helped. Try only in PL, only in WP settings, both, only WP, disabled all plugins…
    Let here know, if helped 🙁
    A@

    Thread Starter astandera

    (@astandera)

    ok, thanks to all, so there are two versions, one official from WordPress.org and one unofficial due some WordPress.org rules.
    Thank you for explanation and for kind, clean free version. I am glad being Hueman 🙂

    A@

    Hi, I succesfuly made the oxygen child theme and for me, only one of both theme’s CSS stylesheets is enough to load.
    My theme loads ONLY style.min.css and it works fine.

    The PHP you’ve published comes from WordPress codex and does just this (visible in sourcecode here: http://www.skidestne.cz):

    <link rel='stylesheet' id='parent-style-css'  href='http://www.skidestne.cz/wp-content/themes/oxygen/style.min.css?ver=4.1' type='text/css' media='all' />
    <link rel='stylesheet' id='child-style-css'  href='http://www.skidestne.cz/wp-content/themes/oxygen-child/style.min.css?ver=4.1' type='text/css' media='all' />

    Loads original style.min.css AND AFTER it the style.min.css FROM THE CHILD.
    It causes that your changes are read AFTER and rewrite the original template’s CSS file.

    If you can make only some CSS changes, the Oxygen theme has Own css field in Look setup – there, if it is not working/rewriting the original css rules, USE !important declaration, which has the highest priority and is always executed, eg:
    main-header {color: red !important;}

    In my opinion – style.css is not compressed (means with white spaces and better formatting) and style.min.css is the same but pusshed into “one line” because of filesize = pageload time reduction.

    Regards
    Alois

    Hi to all in thhis thread.
    SOLVED!

    Solution of this issue is here, third post by user layoutbraut:
    https://wordpress.org/support/topic/spoiler-title-name-problem?replies=4

    I use spoiler with nestead spoilers. Nestead spoilers headings were affected/badly shortened on my webpage.
    The only modification enough for me was to change [_su_ for only [su_ ONLY in the BEGINING of affected/badly shortened sub spoiler headings.
    Even – I ignored adding [su_accordion] at the very top and bottom of the all parent spoiler and it works too. Link: http://colormz.cz/?page_id=90

    TIP: Copy all your webpage text in HTML editor, paste it into a word processor and use Find & Replace to quickly and fast change the prefix. Do it carefully

    All his/her code:

    EXAMPLE
    
    [su_spoiler title="Main" style="fancy" open="yes"]
    
    [su_accordion]
      [su_spoiler title="Here you can add your headline"]
         The content for the spoiler
       [_/su_spoiler]
      [su_spoiler title="Here you can add your second headline"]
         The content for the second spoiler
    [_/su_spoiler]
    
    [/su_accordion]
    [/su_spoiler]

    Hi to all. I’am not a programmer, but it seems the problem might be in tools.php on line 204 (in newest version).
    Older version of the plugin make the same bug so this is definitely a collision between WP 4.0.1. and the plugin.

    It is probably not the question of quots, in the source code seems to be only an entity #8220 added making similar looking character displaying, but it is not a quot.

    In tools.php in plugin folder/inc/core there is a function serching and replacing in spoiler CONTENT title (MAIN title is ok). If anyone can decode this PHP principles, s/he can probably solve this issue.

    Code:

    function su_do_shortcode( $content, $pre ) {
    	if ( strpos( $content, '[_' ) !== false ) $content = preg_replace( '@(\[_*)_(' . $pre . '|/)@', "$1$2", $content );
    	return do_shortcode( $content );
    }

    I have contacted Vladimir – the plugin author on his website.
    We will see

    Regards
    Alois

    Thread Starter astandera

    (@astandera)

    Dear Daniel,
    after I downloaded beta version from github today, everything works ok.
    Thank you for the fix!
    Regards
    Alois

    Thread Starter astandera

    (@astandera)

    Hi,
    thank you for your willingness, you are incredibly quick 🙂 There is my replay:
    – Slick quiz was the latest installed plugin of all, after complete site setup. No other plugins were installed after. Only update to last version of Slick quiz and WP (3.8.1) yesterday.
    – I’ve tested displaying the field in other browsers. Result (Windows): Opera, Chrome, Safari OK. Android: Maxthon browser OK. It seems to be only Firefox issue (v. 27.0.1)
    – link to page: <b>http://www.studiowella.cz/?page_id=900</b&gt; The field should be visible between the heading Test … and the blue Submit button, as in other browsers.

    Regarding to this nice option in future editions I would find usefull:
    – It maight be fine to add an option to fill-in/validate/save to results the user’s email addresses instead only usernames to use it for backward communication with them.
    – Also deleting lines in results (testers are useless to be there) and some … csv export.

    Overall, great plugin and super support. Thank you again.
    Alois

    Info for all. As Yoseihana wrote, I had the same problem. When you play with this beautiful plugin AT LOCAL COMPUTER – it means you prepare your WordPress NOT ONLINE on the real hosting, but at home, running on your PC with PHP server localy instaled (XAMPP, WAMPP), then be aware of that:

    1. the plugin is downloadable and completly working
    2. it is connected with a paired Issuu account properly
    3. it sends PDFs to Issuu and reads their Names there, so you CAN choose and assign that PDFs into the post
    4. BUT the transfer PDFs from PC to Issuu ends with an error and PDF IS NOT uploaded correctly on Issuu – PDFs are there, but corrupted! So that they cannot be shown in your post and Issuu player in the post says, they are missing!
    5. YOU MUST be online with your WordPress installation and also NOT have it secured with a password (because of editing a private post, for example)
    6. Then the plugin works

    Displaying PDF instead of images is much slower due to getting a delay from Issuu, so I recommend that only as an extension, not suitable for a primar and fast displaying – as a portfolio

    Overall, it is an fantastic option to offer your readers to flip through the paginated PDF brochures. Thanks to the autor.

    Thread Starter astandera

    (@astandera)

    Dear “Aldolat”,
    thank you for taking an effort to help me. Your solution is also not “theme update resisted”, BUT much more less dangerous and sophisticated, that mine is, so I will probably follow yours.

    It has to be a passion to keep the plugin alive, and also to help the others to replay their “how to” questions.

    I am repeating again: I appreciate your effort, the plugin is very useful.

    Thank you

Viewing 15 replies - 1 through 15 (of 23 total)