rodge
Forum Replies Created
-
Thank you Bastian! ??
Have a nice evening!
// Rodge
Great!
Thanks Chris ??
Same here, I get the same problem. We can post fine using all fields except featured image field. If we use that field the Submit button changes color and stops working! Tried to disable other stuff/java/plugins/theme but no good.
Seems like the image upload fuelscope code is doing something to the submit button…
Hope for a quick fix on this. I have to select another form plugin otherwise.
Glad to hear you got it to work ??
1. You need to have WP in Swedish. If not, change WP installation to Swedish first.
2. Get a FTP klient or file system through your ISP control panel so you can upload 2 langage files to your webserver.
3. Upload your language file to /wp-content/languages/plugins/ (create this folder if it doesn’t exist). In your case for Swedish the woocommerce-delivery-notes-sv_SE.mo and woocommerce-delivery-notes-sv_SE.po files.
Then reload and you shall get the Swedish language.
I just translated the plugin to Swedish and have the files, but don’t seem to be able to attach them here…. I’ll try to email them to the plug developer.
Forum: Plugins
In reply to: [EZP Maintenance Mode] I cannot log in anymore!!Yes I understand that you don’t tell people to mess with sql db unless they know what that is, and/or the risks to change content without backing up db first etc.
I’m no programmer but I’ve work with sites and various solutions/systems/codes since the C=64 so one or two things i can figure out ??
Works like a sharm now since the users ultra had a redirect setting for the login page, that I know switched off. All back to normal again ??
Thanks for a great plugin!
Rodge
Forum: Plugins
In reply to: [EZP Maintenance Mode] I cannot log in anymore!!think i found it as: “easy-pie-mm-options”
with content:
a:11:{s:14:"plugin_version";s:5:"0.6.4";s:7:"enabled";s:1:"1";s:17:"page_template_key";s:18:"temporarily-closed";s:5:..... etc
and i guess “enabled” is the on/off checkbox.
I test “disabled” instead, save and yes, now I got the site and login back! ??Now I’ll se if i can set usersultra redirect fucktion to off until the site is ready to open ??
// Rodge
Forum: Plugins
In reply to: [EZP Maintenance Mode] I cannot log in anymore!!Hi Bob! ??
Thanks for a quick reply.
Ok, yes i fully understand the complexity of a allround sollution for various third part plugins with redirects.
Suggestion for a possible path to maybe solve this:
That your plugin adds a wp-page (upon installation) with a login function. Ie site.com/backdoor.phpAnd that you in your plugsettings have a field where you can select one page from the available wp-pages, that will be excluded from the “maintance”-mode. Either as a simple textfield where user can enter path to exlusion page, or a list/dropdown of available pages to pick from.
And the user can ofcourse change your default “backdoor.php” name/page url to whatever unique name/path to make it hard do find. Known only to the admin. Thsi would work regardless of various other plugins who all have own redirect and login pages.
An idea, without knowing how your plug works, maybe this is very hard or impossible… ??
I’ll test to delete your plug folder.
Question, if i install th plug again, will the sql-table be “reset” to not active upon new installation?
Or can I through phpmyadmin find the flag for “active/not active” check box as a 0 for off, and a 1 for active, and open/close your plug that way?Name of the field in the table?
Thanks
Rodge
Forum: Plugins
In reply to: [WP RSS Multi Importer] Require Curl?Hi again Allen!
Like I said, I have not much of a clue what I’m doing but I’ve tried my way around mixing lines with “Try & error” method, between the working “Vertical Scroll 1.php” code, and the one I’d like to use “clean separated.php”. And ended up finally (many hours later) with a working version of “clean separated” template that has this code now:
<?php $charstoshow=100; // This number can be changed..indicates how many characters of the excerpt to show $readable='<div class="rssmi_wrap">'; // don't mess with this php code foreach($myarray as $items) { if ($pag!==1){ $total = $total +1; if ($maxperPage>0 && $total>=$maxperPage) break; } $idnum=$idnum +1; // END don't mess with this php code $readable .= '<div class="wprssmi-cs-items">'; // $readable .= '<div class="title"><a '.$openWindow.' href='.$items["mylink"].' '.($noFollow==1 ? 'rel=nofollow':'').'>'.$items["mytitle"].'</a>'; $readable .= '<div class="title"><a '.$openWindow.' href='.$items["mylink"].' title="'.$items["mytitle"].'" '.($noFollow==1 ? 'rel=nofollow':'').'>'.$items["mytitle"].'</a>'; if(!empty($items["myAuthor"])){ ///this is testing } if ($showmore==1 && $showDesc==1){ $readable .= ' <a href="javascript:void(0)"><img src="'.$images_url.'/arrow_down.png"/ id="#'.$idnum.'" class="nav-toggle"></a></div>'; } else{ $readable .= '</div>'; } if (!empty($items["mydesc"]) && $showDesc==1){ if ($showmore==1 && $showDesc==1){ $readable .= '<div id="'.$idnum.'" style="display:none">'; }else{ $readable .= '<div class="body">'; } $desc= esc_attr(strip_tags(@html_entity_decode($items["mydesc"], ENT_QUOTES, get_option('blog_charset')))); $desc = wp_html_excerpt( $desc, $charstoshow ); if ( '[...]' == substr( $desc, -5 ) ) $desc = substr( $desc, 0, -5 ) . '[…]'; elseif ( '[…]' != substr( $desc, -10 ) ) $desc .= ' […]'; $desc = esc_html( $desc ); $readable .= showexcerpt($items["mydesc"],$desc,$openWindow,$stripAll,$items["mylink"],$adjustImageSize,$float,$noFollow,$items["myimage"],$items["mycatid"],$stripSome); $readable .= $desc; $readable .= '</div>'; } $readable .= '<div class="wprssmi-cs-source">'.date_i18n("D, M d, Y g:i:s A",$items["mystrdate"]).', Continue reading <a '.$openWindow.' href='.$items["mylink"].' '.($noFollow==1 ? 'rel=nofollow':'').'">at the source</a></div></div>'; } // don't mess with this php code $readable .='</div>'; ?>
You will most likely find errors or “you can’t do so” and other misstakes, but it works… ??
If you can figure out why/how this change makes a difference, and/or se possible problems i made, I’d be happy for a feature update or cleaned up official code version ??
You can see it working nice now at: https://raskfitline.no
Thanks for your help and nice plugin ??
// Rodge
Forum: Plugins
In reply to: [WP RSS Multi Importer] Require Curl?Hi again, thanks for your quick responses ??
Adding the “ENT_QUOTES,’UTF-8′” as you mention didn’t change the letters.
If you read the feed at:
https://helenerask.zolexdomains.com/feed/
with most of your templates (ie Clean separated) can you duplicate the problem?I’m no good at code but from what I found comparing the “clean separated” and the working “Vertical scroll 1” template php files i see this part in the “vertical scroll 1.php” code at line 51
$desc= esc_attr(strip_tags(@html_entity_decode($items[“mydesc”], ENT_QUOTES, get_option(‘blog_charset’))));
Something about blog_charset, and that part isn’t in the other “clean separated.php” code. Maybe that’s something to do with the characters showing up different?
Thanks again in advance for your help ??
Rodge
Forum: Plugins
In reply to: [WP RSS Multi Importer] Require Curl?Thanks, yes that line change fixed it! ??
Now it works fine without Curl installed on the server.New question:
Any idea why I get the correct letters (norwegian letters) with template “Vertical Scroll 1”, but not with some of the others, like “Default” or “Clean separated”? With them I get ? instead of the scandinavian letters… It’s a standard UK/US WP installation.
I guess it might have to do with the theme fonts I have, but where do i change the type of font used in the “Clean separated” template, so I get the same font used in “Vertical scroll 1” instead (since that one works)…?See it live here: https://raskfitline.no
Thanks in advance! ??
Rodge
Same problem for me…
Would be nice if that could be solved, nice plugin that i’d like to use ??
Rodge
One more thing i noticed now.
I tried to swap from NextGen Gallery plugin to the promising plugin “NextCellent Gallery” (providing NextGEN legacy compatibility from version 1.9.13) wich I hoped would solve my problem and make your plugin work for me. But it seems your plugin only looks for a NextGenGallery plugin being installed/activated.
Would be nice feature in upcoming version if you added functionality for this NextCellent Gallery plugin as well ??Thanks! ??
Rodge