Christian Kramer
Forum Replies Created
-
This was the final hint.
Thanks a lot.After upgrading to 2.2 the problem is still the same: Widgets admin page is not loaded completely. The loading stops at “Facebook”-widget.
Does it depend on multisite installation?The problem at me
Forum: Plugins
In reply to: [LinkedIn SC] [Plugin: LinkedIn SC] Positions not retrievedBut I stored at every entry an industry. At macs & moritz it’s the German “Unterhaltungselektronik”.
Does it depend on the missing URL for company? I don’t think so.Forum: Plugins
In reply to: [LinkedIn SC] [Plugin: LinkedIn SC] Positions not retrievedSorry, … my mistake: Copied the wrong code.
But some rows are empty, although there are contents.
Any idea?Forum: Plugins
In reply to: [LinkedIn SC] [Plugin: LinkedIn SC] Positions not retrievedHi RobotJoosen,
with your new codes I got an error message:
Parse error: syntax error, unexpected ‘&’ in /home/www/wordpress/wp-content/plugins/linkedin-sc/lib/linkedin_profile/linkedin_public_profile.php on line 203Maybe it depends on
$exp->title = trim($experience->div->h3->span);
Any idea?
Regards,
CKForum: Plugins
In reply to: [LinkedIn SC] [Plugin: LinkedIn SC] Positions not retrievedHi RobotJoosen,
thanks a lot for debugging. It works… partially.
Date, title and company are displayed. But company industry and summary are hidden. Look at my page: https://www.startupnavigator.de/christian-kramer/vita/Thanks for your work.
CKForum: Plugins
In reply to: [LinkedIn SC] [Plugin: LinkedIn SC] Positions not retrievedI have the same problem and no solution.
Copied and pasted the code from the wordpress-plugin page, but it doesn’t work.Every other code works fine, only positions is broken.
Forum: Plugins
In reply to: [Facebook Events Widget] [Plugin: Facebook Events Widget] Time out for pluginThe domain is https://freisingerland.startupnavigator.de
Forum: Plugins
In reply to: [Firelight Lightbox] [Plugin: Easy FancyBox] fancybox PDFsHi Ravan,
I have the same problem showing the pdf in your useful plugin. “A browser plugin is missing” (same like julijam).
Any solution from wendygordon?
Greets,
CKFind the error: A comma was missing!
Hi Bill, I use your fabulous plugin and it works fine. Now I have a small problem. I use tags in a special post type. The argument for the tags is ‘product_tags’, the post type is ‘portfolio’.
Filtering with post_type = “portfolio” works, but for product_tags I have to add the argument ‘product_tags’ to your plugin.
Here is my solution, that will not work:<?php /** * Plugin Name: Display Posts Shortcode * Plugin URI: https://www.billerickson.net/shortcode-to-display-posts/ * Description: Display a listing of posts using the [display-posts] shortcode * Version: 1.5 * Author: Bill Erickson * Author URI: https://www.billerickson.net * * This program is free software; you can redistribute it and/or modify it under the terms of the GNU * General Public License version 2, as published by the Free Software Foundation. You may NOT assume * that you can use any other version of the GPL. * * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * * @package Display Posts * @version 1.5 * @author Bill Erickson <[email protected]> * @copyright Copyright (c) 2011, Bill Erickson * @link https://www.billerickson.net/shortcode-to-display-posts/ * @license https://www.gnu.org/licenses/old-licenses/gpl-2.0.html */ // Create the shortcode add_shortcode('display-posts', 'be_display_posts_shortcode'); function be_display_posts_shortcode($atts) { extract( shortcode_atts( array( 'post_type' => 'post', 'tag' => '', 'product_tags' => '', 'category' => '', 'posts_per_page' => '10', 'order' => 'DESC', 'orderby' => 'date', 'include_date' => false, 'include_excerpt' => false, 'image_size' => false, 'taxonomy' => false, 'tax_term' => false ), $atts ) ); $args = array( 'post_type' => $post_type, 'tag' => $tag, 'product_tags' => $product_tags 'category_name' => $category, 'posts_per_page' => $posts_per_page, 'order' => $order, 'orderby' => $orderby, ); if ( !empty( $taxonomy ) && !empty( $tax_term ) ) { $tax_args = array( 'tax_query' => array( array( 'taxonomy' => $taxonomy, 'field' => 'slug', 'terms' => $tax_term ) ) ); $args = array_merge( $args, $tax_args ); } $return = ''; $listing = new WP_Query($args); if ( $listing->have_posts() ): $return .= '<ul class="display-posts-listing">'; while ( $listing->have_posts() ): $listing->the_post(); global $post; if ( $image_size && has_post_thumbnail() ) $image = '<a class="image" href="'. get_permalink() .'">'. get_the_post_thumbnail($post->ID, $image_size).'</a> '; else $image = ''; $title = '<!--<a class="title" href="'. get_permalink() .'">-->'. get_the_title() . '<!--</a>-->'; if ($include_date) $date = ' <span class="date">('. get_the_date('n/j/Y') .')</span>'; else $date = ''; if ($include_excerpt) $excerpt = ' - <span class="excerpt">' . get_the_excerpt() . '</span>'; else $excerpt = ''; $output = '<li>' . $image . $title . $date . $excerpt . '</li>'; $return .= apply_filters( 'display_posts_shortcode_output', $output, $atts, $image, $title, $date, $excerpt ); endwhile; $return .= '</ul>'; endif; wp_reset_query(); if (!empty($return)) return $return; } ?>
What is wrong?
Thanks for a hint.
Best regards,
CKForum: Plugins
In reply to: [LinkedIn SC] [Plugin: LinkedIn SC] Error WarningsHi Guilaumev,
every point is working fine – with the exception of point 1.
Would it be helpful to install a https-plugin? What would you recommend?Greets,
CKForum: Plugins
In reply to: [LinkedIn SC] [Plugin: LinkedIn SC] Error WarningsHi,
the plugin works fine. I have got only a problem with certifications. They are not listet.
I think everything is prepared well:
1. The LinkedIn API is connected (over API-Key, secret key and profile connection)
2. The certifications are public in LinedIn Profile
3. The code is correctly embedded.But, why it doesn’t work. Every other past of cv is correctly imported.
Look at this: https://www.ckmarketing.de/leistungen/vita/
Headline “Zertifizierungen” (scroll down)Thanks a lot.
CKForum: Plugins
In reply to: [LinkedIn SC] [Plugin: LinkedIn SC] Error WarningsHi,
thanks a lot. The summary works fine.
Only the link is the problem, because LinkedIn deleted the link function at the company section. But it doesn’t matter.I will send you an email with the url, if the site is online.
Cheers,
CK