Forum Replies Created
-
AuthorPosts
-
wow this seems to be simple enough.
I can only test it tomorrow and will than make my news on it. Thanks in advanceEdit: works well !
is this a kind of conditional comment
is it possible to obtain in this manner a generell change from svg to png if same filename is found on IE8 ?perhaps like :
jQuery('img[src$="svg"]').attr('src', function() { return jQuery(this).attr('src').replace('.svg', '.png'); });
- This reply was modified 9 years, 7 months ago by Guenni007.
Again : this is not only for table a nice selector it works for nearly every element
f.e. li on lists or p in a div
you can choose every other child every second (the 2nd, 4th, 6th, 8th … Listpoint) byli:nth-child(2n)
for this you can even use
li:nth-child(odd) forli:nth-child(2n+1)
li:nth-child(even) forli:nth-child(2n)
- This reply was modified 9 years, 7 months ago by Guenni007.
and by the way for modern browsers you can select the columns via pseudo-class nth-child
here you can see a test: http://webers-testseite.de/enf02/beispiel-seite/
i gave to the table a class : tab1 ( look for custom class ) that only this table is influenced by the css style
and than :.tab1 th:nth-child(1) { width: 20%; } .tab1 th:nth-child(2) { width: 30%; }
so the first column gets 20% the second 30% the third the rest
Edit: i guess if you haven’t a table heading it will work with td too
.tab1 td:nth-child(1) { width: 20%; }
- This reply was modified 9 years, 7 months ago by Guenni007.
i guess you used it as a price table
goto table options and try data table !
than the column width is set automatically to fit with the contentwell – by the way i’m not a native spoken english man
– and allthough Yigit may understand you perfectly – it might be nice to understand your question too.
Sometimes Participants can help too – and definitly we learn on questions other users have on their installation.the most of my websites with enfold runs under 5.4 stable version. Till now without trouble (Hoster : Hosteurope)
have you the opportunity to check it on a testinstallation on your Server or do you have to switch it completely to a 5.4 version?
Hosteurope gives me the choice to switch between 5.3 and 5.4 for each domain !
- This reply was modified 9 years, 7 months ago by Guenni007.
if you are using a child theme it is possible to stay only in the same category by adding to your child-themes functions.php the following:
add_filter( 'avia_post_nav_settings', 'enfold_customization_same_cat' ); function enfold_customization_same_cat( $s ) { $s['same_category'] = true; return $s; }
thanks can be closed – i managed it in a different way.
I gave a new eventcategory ( frontpage ) to that posting – and they have to do it manually.the link you gave me – i found it yesterday but it didn’t work for event (custom post)
This reply has been marked as private.April 25, 2015 at 7:46 am in reply to: Any way to get a thumbnail to appear with the posts in Search #434622not dangerous but you will loose them after upgrading.
So you than have to do all that changings again.April 24, 2015 at 5:35 pm in reply to: Any way to get a thumbnail to appear with the posts in Search #434286oh sorry didn’t realise that the featured image is meant – sorry again
und in deiner wp-config gibt es sowas wie :
(zB unterhalb von table prefix)
define('WPLANG', 'de_DE');
April 24, 2015 at 4:48 pm in reply to: Any way to get a thumbnail to appear with the posts in Search #434234instead of the counter or just before the headline ?
you can try by using pseudoclasses ::before and ad content in this wayfor example:
.search-results h2::before { content: "abc"; }
for abc you can take every content you want “Θ” or somthing like this
if it is not to long you can put in the circle content:
span.search-result-counter::before { content: "No."; }
ad behind the custom copyright [nolink]
important to use square brackets
try this please:
.avia-google-map-container { border: 1px solid #000 !important; box-shadow: 3px 3px 5px #999; }
with a little shadow too
April 24, 2015 at 2:47 pm in reply to: Google Maps Widget Bubble Content and german "umlaut" ö ä ü etc. #434129This reply has been marked as private.April 24, 2015 at 2:43 pm in reply to: Google Maps Widget Bubble Content and german "umlaut" ö ä ü etc. #434119is it a bug ?
its only the widget so i started to look to : class-framework-widgets.php
on line 1331 change from for the umlaute trouble
$content = json_encode(utf8_encode($content));
to
$content = json_encode($content);
on line 1385 for the quotation marks trouble:
var contentString = '".$content."';
to
var contentString = ".$content.";
April 24, 2015 at 10:10 am in reply to: Google Maps Widget Bubble Content and german "umlaut" ö ä ü etc. #434009??? this is the enfold installed Google Maps Widget
and that is the reason why i asked here . On pages/posts all is fine – even the bubblecontent !
in widget there are these automatically added quotation marks and the German Umlaute do not work at all.btw : i decided to fix the amount of images i have in the masonry (not all – but to set it to 12 in this case) –
and i think this helps in my casebut what if i have more than 100 images ?
This reply has been marked as private.So good this thread here is not closed allready.
i got some trouble with masonry as well.
I use on a site more than one (3) masonry galleries on the same page.here the things are described good enough: Another Thread with that issue
i did the trick josue was telling but this is sometimes ok sometimes not (avia.js hack)
April 21, 2015 at 8:23 pm in reply to: Google Maps Widget Bubble Content and german "umlaut" ö ä ü etc. #432334on the source code in the javascript before there is:
you see the quotation marks and that the & is also translated/encoded – therefore i guess no translation for the ö
- This reply was modified 9 years, 8 months ago by Guenni007.
April 21, 2015 at 4:06 pm in reply to: Google Maps Widget Bubble Content and german "umlaut" ö ä ü etc. #432095This reply has been marked as private.April 21, 2015 at 3:21 pm in reply to: Google Maps Widget Bubble Content and german "umlaut" ö ä ü etc. #432052thanks Andy – yes i tried that –
it only leads on the frontend to that special output
And as you can see one post under this on pages and posts it works all nice !!!
Only in the widget it does not function. My thougts go to a conflict with ajax and the javascript. The widget has its own javascript – so maybe there is a mistake in it! AND
what about the quotation marks – maybe this could be the fault !
why is everything in that bubble automatically framed by these quotation marks ? (in posts and pages not !)edit: btw. the & is automatically changed to …you know what i mean
&
so the UTF-8 code doesn’t work- This reply was modified 9 years, 8 months ago by Guenni007.
April 20, 2015 at 8:32 am in reply to: Google Maps Widget Bubble Content and german "umlaut" ö ä ü etc. #431148hey Rikard – not the ö in the text widget is meant.
please open the bubble info of the POI google maps widget in the socket (4th column)and in addition the content of the bubble is surrounded by quotation marks, which are not set by me. Every bubble content is in between quotation marks.
- This reply was modified 9 years, 8 months ago by Guenni007.
hey Rikard did you know more than the others ? :lol:
where is 3.14
April 16, 2015 at 12:29 pm in reply to: Google Maps Widget Bubble Content and german "umlaut" ö ä ü etc. #429553This reply has been marked as private.April 16, 2015 at 12:14 pm in reply to: Google Maps Widget Bubble Content and german "umlaut" ö ä ü etc. #429542well in the database options (widget_text and widget_avia_google_maps) the data is ö in Plöck
so i suppose it has to do with json_encode
April 16, 2015 at 11:04 am in reply to: Google Maps Widget Bubble Content and german "umlaut" ö ä ü etc. #429487i found something in class-framework-widgets.php
line: 1331
the utf-8 is mentioned here with json_encode – this is i guess the point.
But i don’t know how to handle it.- This reply was modified 9 years, 8 months ago by Guenni007.
April 16, 2015 at 10:48 am in reply to: Google Maps Widget Bubble Content and german "umlaut" ö ä ü etc. #429483This reply has been marked as private. -
AuthorPosts