Viewing 24 posts - 1 through 24 (of 24 total)
  • Author
    Posts
  • #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.
    #490590

    Hi Anton,

    Could you provide us with a link to the site in question so that we can take a closer look please?

    Thanks,
    Rikard

    #490645

    Rikard,

    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 …

    #491893

    Anybody can help me ?

    #491898

    Hi!

    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/customization

    Let us know if we could do anything else, regarding our theme

    Cheers!
    Basilis

    #491905

    Ok,
    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) ?

    #491910

    Hey!

    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,
    Basilis

    #491911

    Ok, 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) ?

    #492545

    Would like to change #f8f8f8 background of pages preloader to dark (#111) ?

    #493049

    well the answer is :
    #top .av-siteloader-wrap {background-color: #111;}
    to whom it may concern

    #493346

    Hi,

    Glad you got it fixed, please let us know if you should need any further help on the topic.

    Thanks,
    Rikard

    #493749

    Yes,

    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?

    #494450

    Hey!

    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,
    Josue

    #494462

    @Josue,

    I 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…

    #494463

    Sorry, it was a typo, i modified the code in my last message, try it again.

    #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

    #494473

    Sure:

    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”.

    #494475

    @Josue,

    Thanks!
    And if I need to add a keyword, would it be like: &@=intercultural ?

    #494478

    You mean hashtags? try with the following:

    &hashtags=tag1,tag2,tag3
    
    #494481

    @Josue

    :)))))))))))))))
    You’re a good one !

    #494483

    Oh, @Josue, while I hold you ..

    Could you tell me if I can get this comments layout?

    #494485

    That 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/

    #494500

    Ok @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!

    #494509

    Sure, glad to help :)

    Regards,
    Josue

Viewing 24 posts - 1 through 24 (of 24 total)
  • The topic ‘Twitter sharing, menu color, permanent link’ is closed to new replies.