Tagged: menu color, social, twitter
-
AuthorPosts
-
August 19, 2015 at 2:29 pm #490072
Hi,
1.1. How could I delete the popup “Permanent Link” from posts’ titles?
1.2. And what should I do to definitely remove those popups ?
2. is it normal that sharing posts via Twitter button (in social buttons at the bottom of posts) the link appearing is like : http://mywebsite.com/?p=6083 instead of a full and right link http://mywebsite.com/category/article? Is it possible to correct it somewhere in the theme code?
2. Could i add some “via @… by @…” info by default in this twitter sharing additionally to the post’s name and link, in order to create a viral promotion and notifications for different authors?
4. How could I make dark menus keeping header white ?
5. Would like to change #f8f8f8 background of pages preloader to dark (#111) ?
6. How can I get this comments layout ?
- This topic was modified 9 years, 2 months ago by Josue.
August 20, 2015 at 8:52 am #490590Hi Anton,
Could you provide us with a link to the site in question so that we can take a closer look please?
Thanks,
RikardAugust 20, 2015 at 10:31 am #490645Rikard,
I’m working on localhost host.
Are my questions impossible to be answered without having look at my site ?
I thought it’s just some css and php (for twiter issues) corrections …August 23, 2015 at 9:20 pm #491893Anybody can help me ?
August 23, 2015 at 9:30 pm #491898Hi!
Everything is possible, but that would need a lot of work to be done.
You can contact one of our Customization Contractors, who will help you out with the process.
http://kriesi.at/contact/customizationLet us know if we could do anything else, regarding our theme
Cheers!
BasilisAugust 23, 2015 at 9:35 pm #491905Ok,
could you at least help me with these 2 simple questions :1.1. How could I delete the popup “Permanent Link” from posts’ titles?
1.2. And what should I do to definitely remove those popups ?
2. Would like to change #f8f8f8 background of pages preloader to dark (#111) ?
August 23, 2015 at 9:38 pm #491910Hey!
if you want to remove those ” popups ” you have to remove the single / page.php title from a href. I would suggest NOT to do it, as those titles do help in SEO But also the people who have issues by reading text.
If you still want to do it, let me know and I will help you further.
Regards,
BasilisAugust 23, 2015 at 9:41 pm #491911Ok, I didn’t know it was “connected” to SEO.
And how about :
2. Would like to change #f8f8f8 background of pages preloader to dark (#111) ?August 25, 2015 at 12:05 am #492545Would like to change #f8f8f8 background of pages preloader to dark (#111) ?
August 25, 2015 at 4:14 pm #493049well the answer is :
#top .av-siteloader-wrap {background-color: #111;}
to whom it may concernAugust 26, 2015 at 8:36 am #493346Hi,
Glad you got it fixed, please let us know if you should need any further help on the topic.
Thanks,
RikardAugust 26, 2015 at 6:12 pm #493749Yes,
I’d like to understand is it normal that sharing posts via Twitter button (in social buttons at the bottom of posts) the link appearing is like : http://mywebsite.com/?p=6083 instead of a full and right link http://mywebsite.com/category/article?
August 27, 2015 at 9:22 pm #494450Hey!
That’s the post shortlink and it is used instead of the permalink because of twitter character limit, you can change this with the following filter in your theme / child theme functions.php:
add_filter('avia_social_share_link_arguments', 'avia_add_social_share_link_arguments', 10, 1); function avia_add_social_share_link_arguments($args) { $args['twitter'] = array("encode"=>true, "encode_urls"=>false, "pattern" => "https://twitter.com/share?text=[title]&url=[permalink]"); return $args; }
You can add the @via thing there too.
Regards,
JosueAugust 27, 2015 at 9:44 pm #494462I got this message after having added this code in functions.php:
( ! ) Parse error: syntax error, unexpected ',' in C:\wamp\www\wordpress\wp-content\themes\enfold-child\functions.php on line 20 Call Stack # Time Memory Function Location 1 0.0005 253152 {main}( ) ..\index.php:0 2 0.0009 256256 require( 'C:\wamp\www\wordpress\wp-blog-header.php' ) ..\index.php:17 3 0.0015 274592 require_once( 'C:\wamp\www\wordpress\wp-load.php' ) ..\wp-blog-header.php:12 4 0.0020 286536 require_once( 'C:\wamp\www\wordpress\wp-config.php' ) ..\wp-load.php:37 5 0.0043 385776 require_once( 'C:\wamp\www\wordpress\wp-settings.php' ) ..\wp-config.php:91
Something goes wrong…
August 27, 2015 at 9:46 pm #494463Sorry, it was a typo, i modified the code in my last message, try it again.
August 27, 2015 at 9:49 pm #494464@Josue, It does work now !
Could you add the @via thing in this code, pls? I don’t master php syntax
Thanks in advance
August 27, 2015 at 9:57 pm #494473Sure:
add_filter('avia_social_share_link_arguments', 'avia_add_social_share_link_arguments', 10, 1); function avia_add_social_share_link_arguments($args) { $args['twitter'] = array("encode"=>true, "encode_urls"=>false, "pattern" => "https://twitter.com/share?text=[title]&url=[permalink]&via=USERNAME"); return $args; }
Change “USERNAME”.
August 27, 2015 at 10:00 pm #494475Thanks!
And if I need to add a keyword, would it be like:&@=intercultural
?August 27, 2015 at 10:03 pm #494478You mean hashtags? try with the following:
&hashtags=tag1,tag2,tag3
August 27, 2015 at 10:05 pm #494481:)))))))))))))))
You’re a good one !August 27, 2015 at 10:06 pm #494483Oh, @Josue, while I hold you ..
Could you tell me if I can get this comments layout?
August 27, 2015 at 10:13 pm #494485That does require some custom work and it is harder to help you as you’re on local, i found this plugin that could do the trick:
https://wordpress.org/plugins/comment-form/August 27, 2015 at 10:23 pm #494500Ok @Josue,
this plugin doesn’t do this, but it’s ok. We’ll see it when I’ll be on-line.
Meanwhile, you can mark this thread as resolved.And thank you very much!
August 27, 2015 at 10:28 pm #494509Sure, glad to help :)
Regards,
Josue -
AuthorPosts
- The topic ‘Twitter sharing, menu color, permanent link’ is closed to new replies.