idaryl
Forum Replies Created
-
Forum: Plugins
In reply to: [LDD Directory Lite] Make website links open in new tabI guess you hav’nt gotten around the editing this feature as yet – I had to add it to the latest version I downloaded…
Forum: Plugins
In reply to: [LDD Directory Lite] Default View CategoriesWith that in mind – what template/page would that be – so it can be edited?
The category list spans the entire width of the screen and i need to set it to the with of the page/inner div of the page.
Forum: Plugins
In reply to: [The Hack Repair Guy's Plugin Archiver] Fatal error with WordPress 4.4 Beta 3Parse error: syntax error, unexpected T_FUNCTION in /home/xxxxxxxx/public_html/plumber2/wp-content/plugins/hackrepair-plugin-archiver/includes/bulk.php on line 92
I still get this error even with the latest version – and on 4 seperate installs
Forum: Plugins
In reply to: [Pages In Widgets] Version 1.7 fails to reactivateYes it did – and yes it is ??
Forum: Plugins
In reply to: [Pages In Widgets] Version 1.7 fails to reactivatewhat was it?
Forum: Plugins
In reply to: [Pages In Widgets] Version 1.7 fails to reactivateproblem starts here:
[ require pagesinwidgets_PATH.DIRECTORY_SEPARATOR.’general’.DIRECTORY_SEPARATOR.’init.php’; ]
Forum: Plugins
In reply to: [Pages In Widgets] Version 1.7 fails to reactivateI have this installed on 7 sites, so a simple remove is not the best option for me… bummer ??
Forum: Plugins
In reply to: [Pages In Widgets] Version 1.7 fails to reactivatesame for me also – broke my entire site – all I get is an error page – no matter what
Set it back to 1.6 and the site came back….
Forum: Plugins
In reply to: [WP-DBManager] Backup Created OK, ErrorMsg: Database Failed To BackupOK did that – got the resulting strings
Now i have to go and enable SSH or get it done (this is not my domain area)
and see whats what – I can post the strings here if you want to see them
for the time being Ill leave that line on in the wp-dbmanager
Forum: Plugins
In reply to: [WP-DBManager] Backup Created OK, ErrorMsg: Database Failed To BackupHuh… Um…
Considering that the first question has zero to do with my issue…
I did say – and I quote “I downloaded the B/U to see if it contains all the data – and it does”So what does database with 0kb have to do with what Im experiencing?
Dont supply much details there eh, guy… what languages do you have on? and… are you using jusy link menus?
All they need is /?lang=(?) point it at whatever the language you have on…
Forum: Plugins
In reply to: [Transposh WordPress Translation] Distinct PDF depending on languagePdf’s for transposh – depending on Language used.
To make a pdf “swap” with the language. Create the pdf and add “en” to the end of the name.
EG: charityen.pdf – charityes.pdf
Expalnation:
the function added to the pdf src — [tp mylang=”y” lang=”en,es”][/tp]What this does is use the pdf with “es” if the site language spanish is on, if english then it uses the “en” pdf
EG: a pdf file (need two versions, same name, with en or es added to file name – charityes.pdf, charityen.pdf
<FORM METHOD=”LINK” ACTION=”/htoa/wp-content/themes/happykids-child/images/charity[tp mylang=”y” lang=”en,es”][/tp].pdf” target=”_blank” />
<INPUT TYPE=”submit” VALUE=”Clickable Button”>
</FORM>Forum: Plugins
In reply to: [Transposh WordPress Translation] Changing image according to the languageImage scaling for transposh – depending on Language used.
To make an image “swap” with the language. Create the image and add “en” to the end of the name.
EG: charityen.jpg – charityes.jpg
Expalnation:
the function added to the img src — [tp mylang=”y” lang=”en,es”][/tp]What this does is use the image with “es” if the site language spanish is on, if english then it uses the “en” picture
Using the style=”max-width:100%;height:auto;” sets the image to 100% and will scale up or down according to the device used (mobile ready)
Placing it in a centered div is for decoration purposes only
<div align=”center”>
<img src=”/htoa/wp-content/themes/happykids-child/images/charity[tp mylang=”y” lang=”en,es”][/tp].jpg” title=”Charities” style=”max-width:100%;height:auto;” />
</div>This method also works with downloadables…
EG: a pdf file (need two versions, same name, with en or es added to file name – charityes.pdf, charityen.pdf
<FORM METHOD=”LINK” ACTION=”/htoa/wp-content/themes/happykids-child/images/charity[tp mylang=”y” lang=”en,es”][/tp].pdf” target=”_blank” />
<INPUT TYPE=”submit” VALUE=”Clickable Button”>
</FORM>Forum: Plugins
In reply to: [Transposh WordPress Translation] Changing the dropdown listMake your drop list as you normally would then where the url pointer in the menu is use
/?lang=es
*this sample is for Spanish
/?lang=fr
French – you get the idea…
then populate your drop menu with languages associated with what you have enabled
Forum: Plugins
In reply to: [Transposh WordPress Translation] Transposh in HeaderPlace the code in a php page called flagtop.php
In the header, or functions include(‘flagtop’);<style> .toptrans {clear:both; width:90%; margin:-40px 0 0 30px; z-index:70; text-align:left; display:inline; position:absolute;} </style> <div class="toptrans"><?php if(function_exists("transposh_widget")) { transposh_widget(array(), array('title' => '', 'widget_file' => 'flags/tpw_flags.php')); }?></div>
in that page, edit the style called #toptrans
make sure the css has the position:absolute; the display inline makes the flags side-by-side, the z-index makes sure its above all the elements on the page (so it can be clicked on – you can use the top left margins to position it wherever yo want -.this is also mobile friendly ??
PS make a copy for the footer if you want – change the top to foot, so no collisions occur.