valuser
Forum Replies Created
-
Forum: Plugins
In reply to: [Tippy] A Couple Suggestionsno joy (for me) i’m afraid with 3.4.1.
Wonder if other users are affected ? If not, i’m ok with 3.2.
Forum: Plugins
In reply to: [Tippy] A Couple Suggestionsok. I’m afraid there is no change.
I did it two ways as i actually don’t have a clue.
1) i replaced what was there with what you gave me. no change
2) i added (as requested) what was there to what you gave me ie
function domTip_setPositions(domTip_tipElement, event)
{
if (!event)
var event = window.event;
etc}
then
{
domTip_scrollPageX = jQuery(window).scrollLeft();
etc}
no change. anyway
Forum: Plugins
In reply to: [Tippy] A Couple Suggestionsok (on local site-Safari) – disabled jquery slick menu- installed your 3.4- no change
errors
NO_MODIFICATION_ALLOWED_ERR: DOM Exception 7: An attempt was made to modify an object where modifications are not allowed. FB.Share:6
dom_tooltip.js:91TypeError: Result of expression ‘event’ [undefined] is not an object.
newsruby:213ReferenceError: Can’t find variable: domTip_clearTip
dom_tooltip.js:91TypeError: Result of expression ‘event’ [undefined] is not an object.
newsruby:213ReferenceError: Can’t find variable: domTip_clearTip
dom_tooltip.js:91TypeError: Result of expression ‘event’ [undefined] is not an object.
newsruby:213ReferenceError: Can’t find variable: domTip_clearTiphope this helps
Forum: Plugins
In reply to: [Tippy] A Couple SuggestionsSorry. am using Version: 3.2.0. which works.
i also have running jQuery Slick Menu ??????
will install latest version and report back.
Forum: Themes and Templates
In reply to: p2 and BuddyPressThe bp-p2 theme was publicly available on the https://bp-theme-converts.com/ site. I have an amended version on a trial site at https://ruby.de-nws.com/. (i am not a coder so my version may not be quite there .) The original bp-p2 theme is on the first post at https://ruby.de-nws.com/page/5/. This is entirely Daithi’s theme and is based on p2 vers 1.1.5 and bp vers 1.2.5. Daithi, the author may now be charging for this, i just don’t know, as his site is sometimes up and sometimes down. At Daithi
@bpthemeconverts on twitter he has a tweet that says that he will convert any theme to work with buddypress for €25. He had posted that he had become very frustrated with the lack of progress on privacy/spam issues with BP. Remember he is the author.Forum: Plugins
In reply to: [Tippy] A Couple SuggestionsFirst. It is a class plugin. Thanks.
3.3.1 All well.
tried 3.3.2 and 3.3.3 but on hover (which was the configuration) does not appear to function. gone back to 3.3.1 for the time being.
No worries as i am only trying things out.
It could well be something I’m doing that can’t work with the higher versions.
Forum: Plugins
In reply to: [Tippy] A Couple Suggestionssimilar sentiments re css & gratitude. A Gem.
but does v.3.3.2 work ?
Forum: Plugins
In reply to: [Tweet Blender] Adding Tweet Blender to Posts and Pages3.3.8 does indeed do the job.
Many thanks. In my opinion (just a newbie & testing) your plugin is way way ahead of anything else out there. Thanks again
Forum: Plugins
In reply to: [Lys Creation Multi-Video Thumbnails Widgets] No activationditto
Forum: Fixing WordPress
In reply to: [P2] Deleting a post from front endthink i found a solution at https://www.ryanpaul.ca/websites/useful-wordpress-stuff/
Forum: Fixing WordPress
In reply to: [P2] Deleting a post from front endGone part of the way with help from a forum post at
https://www.ads-software.com/support/topic/delete-post-on-front-end?replies=8Entering
<?php if (current_user_can('edit_post', $post->ID)) echo "<a href='" . wp_nonce_url("/wp-admin/post.php?action=delete&post=$id", 'delete-post_' . $post->ID) . "'>Delete post</a>" ?>
in the p2 Theme entry.php
appears to go half the way but clicking the link “Delete Post” redirects to a “WordPress Failure Notice” “Are you sure you want to do this? Please try again” . Clicking “Please try again” takes me back to previous page (the page from where I tried to delete).So no delete. Yet.
Any ideas how to complete this would really be appreciated.
Forum: Themes and Templates
In reply to: P2 titles disappearingHad the same problem today. In my case when I disabled a plugin “vertical scroll” the problem appeared to disappear. Can’t say this was causing the problem, but the problem is gone!
Forum: Themes and Templates
In reply to: [P2] P2 Changelog Exists?There should be (is) a readme.txt file in the p2 folder with a changelog.
Forum: Networking WordPress
In reply to: A Link for "My Site" (logged in user)Slight correction to the above. The inclusion of “break;” ensures the link is to the users primary blog.
<?php if ( is_user_logged_in() ) { global $current_user; get_currentuserinfo(); $user_id = $current_user->ID ; $user_blogs = get_blogs_of_user( $user_id ); foreach ($user_blogs AS $user_blog) { $user_blog->siteurl; break; } $link = $user_blog->siteurl; $title = "My Blog"; $var = "<a href='$link' target='_blank' style='color: blue;' title ='in new tab'>$title<a/>"; echo "<h3>$var</h3>"; } ?>
Brilliant. Thanks for the advice.